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;