summaryrefslogtreecommitdiff
path: root/db/migrations/0030_zippy_the_order.sql
blob: 020f83296541d90ccb91df48015cb2dbbec76de6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CREATE TABLE "form_entries" (
	"id" serial PRIMARY KEY NOT NULL,
	"form_code" varchar(50) NOT NULL,
	"data" jsonb NOT NULL,
	"created_at" timestamp with time zone DEFAULT now() NOT NULL,
	"updated_at" timestamp with time zone DEFAULT now() NOT NULL
);
--> statement-breakpoint
CREATE TABLE "form_metas" (
	"id" serial PRIMARY KEY NOT NULL,
	"form_code" varchar(50) NOT NULL,
	"form_name" varchar(255) NOT NULL,
	"columns" jsonb NOT NULL,
	"created_at" timestamp with time zone DEFAULT now() NOT NULL,
	"updated_at" timestamp with time zone DEFAULT now() NOT NULL
);