ww664853070
1 year ago
1 changed files with 19 additions and 0 deletions
@ -0,0 +1,19 @@ |
|||||
|
CREATE SEQUENCE "public"."inspection_notification_phone_seq" |
||||
|
INCREMENT 1 |
||||
|
MINVALUE 1 |
||||
|
MAXVALUE 9223372036854775807 |
||||
|
START 1 |
||||
|
CACHE 1; |
||||
|
|
||||
|
|
||||
|
|
||||
|
CREATE TABLE "public"."inspection_notification_phone" ( |
||||
|
"id" int4 NOT NULL DEFAULT nextval('inspection_notification_phone_seq'::regclass), |
||||
|
"phone" varchar(255) COLLATE "pg_catalog"."default", |
||||
|
PRIMARY KEY ("id") |
||||
|
) |
||||
|
; |
||||
|
|
||||
|
|
||||
|
COMMENT ON COLUMN "public"."inspection_notification_phone"."phone" IS '电话号码'; |
||||
|
|
Loading…
Reference in new issue