From e5f28679cfab6612d86985955cef5d0f192a28ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=A2=A6=E8=BF=9C?= <1063331231@qq.com> Date: Tue, 29 Jul 2025 14:41:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E9=80=9A=E9=81=93?= =?UTF-8?q?=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/sql/init.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/resources/sql/init.sql b/src/main/resources/sql/init.sql index 754b6a0..2c8a6cf 100644 --- a/src/main/resources/sql/init.sql +++ b/src/main/resources/sql/init.sql @@ -57,6 +57,10 @@ CREATE TABLE "channel" ( -- ---------------------------- -- Records of channel -- ---------------------------- +INSERT OR IGNORE INTO "channel" ("id", "name", "solution_id", "solution_name", "concentration", "code", "volume", "create_time", "update_time") VALUES (1, '通道一', NULL, NULL, NULL, 'CHANNEL_1', NULL, NULL, NULL); +INSERT OR IGNORE INTO "channel" ("id", "name", "solution_id", "solution_name", "concentration", "code", "volume", "create_time", "update_time") VALUES (2, '通道二', NULL, NULL, NULL, 'CHANNEL_2', NULL, NULL, NULL); +INSERT OR IGNORE INTO "channel" ("id", "name", "solution_id", "solution_name", "concentration", "code", "volume", "create_time", "update_time") VALUES (3, '通道三', NULL, NULL, NULL, 'CHANNEL_3', NULL, NULL, NULL); +INSERT OR IGNORE INTO "channel" ("id", "name", "solution_id", "solution_name", "concentration", "code", "volume", "create_time", "update_time") VALUES (4, '通道四', NULL, NULL, NULL, 'CHANNEL_4', NULL, NULL, NULL); -- ---------------------------- -- Table structure for formulation