Same for countries

This commit is contained in:
Timo John 2020-06-16 10:17:29 +02:00 committed by Timo Volkmann
parent 61796b1b50
commit a8d84a4b36

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