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

7 lines
264 B
MySQL
Raw Normal View History

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