blob: 603798fe3e271b86eb2fa0fa7f593c5003b0bc4f (
plain)
1
2
3
4
5
6
7
8
9
|
CREATE TABLE "tag_type_class_form_mappings" (
"id" serial PRIMARY KEY NOT NULL,
"tag_type" varchar(50) NOT NULL,
"class" varchar(100) NOT NULL,
"form_code" varchar(50) NOT NULL,
"form_name" varchar(255) NOT NULL,
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
"updated_at" timestamp with time zone DEFAULT now() NOT NULL
);
|