You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
YZWL/IDEA/mysql/time_zone_name.sql

11 lines
289 B

create table mysql.time_zone_name
(
Name char(64) not null
primary key,
Time_zone_id int unsigned not null
)
comment 'Time zone names' charset = utf8mb3
row_format = DYNAMIC
stats_persistent = 0;