Skip to content

Commit 2170d6a

Browse files
Merge pull request #19 from adela-bytebase/adela-bytebase-patch-19
Create table t1 with id and name columns
2 parents 3234c26 + a118c3c commit 2170d6a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

migrations/1.0.0_create_t1.sql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
CREATE OR REPLACE TABLE public.t1 (
2+
id INT AUTOINCREMENT,
3+
name VARCHAR(100),
4+
PRIMARY KEY (id)
5+
);

0 commit comments

Comments
 (0)