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

8 lines
305 B
MySQL
Raw Normal View History

2025-07-02 05:04:36 -07:00
-- 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;