cmc-sales/go/sql/schema/ignore_009_states.sql

8 lines
305 B
SQL

-- Schema for states table
CREATE TABLE IF NOT EXISTS `states` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`shortform` varchar(10) DEFAULT NULL,
`enqform` varchar(10) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;