You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
445 B
19 lines
445 B
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 '电话号码';
|
|
|
|
|