diff options
Diffstat (limited to 'db/migrations_backup/0105_eminent_brother_voodoo.sql')
| -rw-r--r-- | db/migrations_backup/0105_eminent_brother_voodoo.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrations_backup/0105_eminent_brother_voodoo.sql b/db/migrations_backup/0105_eminent_brother_voodoo.sql new file mode 100644 index 00000000..88bb4fdf --- /dev/null +++ b/db/migrations_backup/0105_eminent_brother_voodoo.sql @@ -0,0 +1,11 @@ +CREATE TABLE "vendor_candidates" ( + "id" serial PRIMARY KEY NOT NULL, + "company_name" varchar(255) NOT NULL, + "contact_email" varchar(255) NOT NULL, + "contact_phone" varchar(50), + "country" varchar(100), + "source" varchar(100), + "status" varchar(30) DEFAULT 'COLLECTED' NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + "updated_at" timestamp DEFAULT now() NOT NULL +); |
