salix/db/versions/.archive/10538-silverAspidistra/01-createChronopostService.sql

10 lines
312 B
MySQL
Raw Normal View History

CREATE TABLE vn.chronopostServiceWeekday (
id int(11) auto_increment NOT NULL,
weekdays set('mon','tue','wed','thu','fri','sat','sun') NOT NULL,
serviceType int(11) unsigned NOT NULL,
CONSTRAINT chronopostServiceWeekday_PK PRIMARY KEY (id)
)
ENGINE=InnoDB
DEFAULT CHARSET=utf8mb3
COLLATE=utf8mb3_unicode_ci;