summaryrefslogtreecommitdiff
path: root/db/migrations/0376_keen_daimon_hellstrom.sql
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-09-19 09:44:29 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-09-19 09:44:29 +0000
commit7cb4aa598cab4df8774b8a95357b594d3352b5d9 (patch)
tree6abf99c3da57e0a3a581dab7691938cc2d7ad0ff /db/migrations/0376_keen_daimon_hellstrom.sql
parentb99e57a028703c8f3d9526c47bc51774490f4546 (diff)
(공통) 0919 DB Migrations
Diffstat (limited to 'db/migrations/0376_keen_daimon_hellstrom.sql')
-rw-r--r--db/migrations/0376_keen_daimon_hellstrom.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrations/0376_keen_daimon_hellstrom.sql b/db/migrations/0376_keen_daimon_hellstrom.sql
new file mode 100644
index 00000000..8bdd3b00
--- /dev/null
+++ b/db/migrations/0376_keen_daimon_hellstrom.sql
@@ -0,0 +1,11 @@
+CREATE TABLE "buyer_signatures" (
+ "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "buyer_signatures_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1),
+ "name" varchar(255) DEFAULT '삼성중공업' NOT NULL,
+ "image_url" text NOT NULL,
+ "data_url" text,
+ "mime_type" varchar(100),
+ "file_size" integer,
+ "is_active" boolean DEFAULT true,
+ "created_at" timestamp DEFAULT now() NOT NULL,
+ "updated_at" timestamp DEFAULT now() NOT NULL
+);