remove testing sql

This commit is contained in:
Hongbo Wu
2024-06-21 18:11:07 +08:00
parent d0b790f48b
commit 95f3725dfa
2 changed files with 0 additions and 23 deletions

View File

@ -1,16 +0,0 @@
-- 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 INDEX test_name_idx ON omnivore.test (name);
COMMIT;

View File

@ -1,7 +0,0 @@
-- Type: UNDO
-- Name: test
-- Description: test
BEGIN;
COMMIT;