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.

17 lines
530 B

create table mysql.help_topic
(
help_topic_id int unsigned not null
primary key,
name char(64) not null,
help_category_id smallint unsigned not null,
description text not null,
example text not null,
url text not null,
constraint name
unique (name)
)
comment 'help topics' charset = utf8mb3
row_format = DYNAMIC
stats_persistent = 0;