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.
|
create table mysql.time_zone
|
|
(
|
|
Time_zone_id int unsigned auto_increment
|
|
primary key,
|
|
Use_leap_seconds enum ('Y', 'N') default 'N' not null
|
|
)
|
|
comment 'Time zones' charset = utf8mb3
|
|
row_format = DYNAMIC
|
|
stats_persistent = 0;
|
|
|