diff options
Diffstat (limited to 'db/migrations/0267_bright_mindworm.sql')
| -rw-r--r-- | db/migrations/0267_bright_mindworm.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/db/migrations/0267_bright_mindworm.sql b/db/migrations/0267_bright_mindworm.sql new file mode 100644 index 00000000..003d26c7 --- /dev/null +++ b/db/migrations/0267_bright_mindworm.sql @@ -0,0 +1,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 +); |
