mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
14 lines
300 B
PL/PgSQL
Executable file
14 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;
|