cmc-sales/go-app/sql/schema/012_countries.sql

6 lines
231 B
MySQL
Raw Normal View History

2025-07-02 05:04:36 -07:00
-- Schema for countries table
CREATE TABLE IF NOT EXISTS `countries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;