15 lines
486 B
Plaintext
15 lines
486 B
Plaintext
drop table if exists `about:text`;
|
|
create table `about:text` (
|
|
_id int not null auto_increment,
|
|
`about:text` varchar(255) not null default '',
|
|
primary key (_id)
|
|
);
|
|
show create table `about:text`;
|
|
Table Create Table
|
|
about:text CREATE TABLE `about:text` (
|
|
`_id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`about:text` varchar(255) COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
|
|
PRIMARY KEY (`_id`)
|
|
) ENGINE=ENGINE DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci
|
|
drop table `about:text`;
|