mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
remove testing sql
This commit is contained in:
parent
d0b790f48b
commit
95f3725dfa
2 changed files with 0 additions and 23 deletions
|
|
@ -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;
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
-- Type: UNDO
|
||||
-- Name: test
|
||||
-- Description: test
|
||||
|
||||
BEGIN;
|
||||
|
||||
COMMIT;
|
||||
Loading…
Reference in a new issue