Add dummy data for catalog_item
This commit is contained in:
parent
1b7addaefb
commit
bb455cf9b7
@ -11,6 +11,15 @@ create table if not exists `catalog_item` (
|
||||
name varchar(36) not null
|
||||
) engine=InnoDB default charset=utf8mb4;
|
||||
|
||||
insert into `catalog_item` values
|
||||
(default, 'Item A'),
|
||||
(default, 'Item B'),
|
||||
(default, 'Item C'),
|
||||
(default, 'Item D'),
|
||||
(default, 'Item E'),
|
||||
(default, 'Item F'),
|
||||
(default, 'Item G');
|
||||
|
||||
-- Main table
|
||||
|
||||
create table if not exists `highlight_category` (
|
||||
|
Loading…
Reference in New Issue
Block a user