15 lines
300 B
PL/PgSQL
Executable File
15 lines
300 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
|
|
);
|
|
|
|
COMMIT;
|