Skip to content

Commit f1c6d0c

Browse files
committed
feat: Create a simple SQL query to test migration
1 parent 8068a0a commit f1c6d0c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
CREATE TABLE member (
2+
id uuid NOT NULL PRIMARY KEY,
3+
name TEXT NOT NULL,
4+
email TEXT NOT NULL UNIQUE,
5+
created_at timestamptz NOT NULL
6+
);

0 commit comments

Comments
 (0)