VvebOIDC/install/sql/mysqli/schema/geoip/region_to_region_group.sql

10 lines
447 B
SQL

DROP TABLE IF EXISTS `region_to_region_group`;
CREATE TABLE `region_to_region_group` (
`region_to_region_group_id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`country_id` INT UNSIGNED NOT NULL,
`region_id` INT UNSIGNED NOT NULL DEFAULT '0',
`region_group_id` INT UNSIGNED NOT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`region_to_region_group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;