Same for countries
This commit is contained in:
parent
02e06de22d
commit
3783684c2e
@ -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`),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user