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`),