mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
16 lines
426 B
PL/PgSQL
Executable file
16 lines
426 B
PL/PgSQL
Executable file
-- Type: DO
|
|
-- Name: test
|
|
-- Description: test
|
|
|
|
BEGIN;
|
|
|
|
CREATE TABLE omnivore.test (
|
|
id UUID PRIMARY KEY DEFAULT uuid_generate_v1mc(),
|
|
name TEXT NOT NULL,
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|
|
CREATE TRIGGER update_test_modtime BEFORE UPDATE ON omnivore.test FOR EACH ROW EXECUTE PROCEDURE update_updated_at_column();
|
|
|
|
COMMIT;
|