From 3783684c2e8ecff5680b417c56eaf929cc57c3e0 Mon Sep 17 00:00:00 2001 From: Timo John Date: Tue, 16 Jun 2020 10:17:29 +0200 Subject: [PATCH] Same for countries --- Scripts/setup.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Scripts/setup.sql b/Scripts/setup.sql index 9e0b709..f154ee3 100644 --- a/Scripts/setup.sql +++ b/Scripts/setup.sql @@ -22,6 +22,8 @@ DROP TABLE IF EXISTS `countries`; CREATE TABLE IF NOT EXISTS `countries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `country` varchar(255) NOT NULL, + `preview_img` VARCHAR(255) NULL DEFAULT NULL, + `description` VARCHAR(4000) NULL DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`id`),