blob: 83288796768e08a7ac6be6df912c741d0f7cac54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
CREATE TABLE "view_tag_subfields" (
"id" integer PRIMARY KEY NOT NULL,
"tag_type_code" varchar(50) NOT NULL,
"tag_type_description" text,
"attributes_id" varchar(50) NOT NULL,
"attributes_description" text NOT NULL,
"expression" text,
"delimiter" varchar(10),
"sort_order" integer DEFAULT 0 NOT NULL,
"created_at" timestamp with time zone,
"updated_at" timestamp with time zone
);
|