From bb455cf9b7c0da024fa8a4faefb1b3f7486202d0 Mon Sep 17 00:00:00 2001 From: Dita Aji Pratama Date: Sun, 29 Jun 2025 19:37:25 +0700 Subject: [PATCH] Add dummy data for catalog_item --- sql/highlight.sql | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sql/highlight.sql b/sql/highlight.sql index 2b1ec94..c2169d9 100644 --- a/sql/highlight.sql +++ b/sql/highlight.sql @@ -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` (