Same for countries

This commit is contained in:
Timo John 2020-06-16 10:17:29 +02:00
parent 02e06de22d
commit 3783684c2e

View File

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