blob: 003d26c77a895f1eaf20d15d4ab5c691437d0df3 (
plain)
1
2
3
4
5
6
7
8
|
CREATE TABLE "bidding_notice_template" (
"id" serial PRIMARY KEY NOT NULL,
"type" varchar(50) DEFAULT 'standard' NOT NULL,
"title" varchar(200) DEFAULT '표준 입찰공고문' NOT NULL,
"content" text DEFAULT '' NOT NULL,
"created_at" timestamp DEFAULT now() NOT NULL,
"updated_at" timestamp DEFAULT now() NOT NULL
);
|