mirror of
https://gitee.com/johng/gf
synced 2026-06-07 02:12:11 +08:00
5 lines
130 B
SQL
5 lines
130 B
SQL
CREATE TABLE test_enum (
|
|
id int8 NOT NULL,
|
|
status int2 DEFAULT 0 NOT NULL,
|
|
CONSTRAINT test_enum_pk PRIMARY KEY (id)
|
|
); |