From 8f4597045d9f6e5dc4b9f7562dd596bb1e946db7 Mon Sep 17 00:00:00 2001 From: UlricQin Date: Fri, 16 Jul 2021 20:02:56 +0800 Subject: [PATCH] rename preset classpath all->all.resources --- sql/n9e.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/n9e.sql b/sql/n9e.sql index bcb6ca71..73c45e3c 100644 --- a/sql/n9e.sql +++ b/sql/n9e.sql @@ -138,7 +138,7 @@ CREATE TABLE `classpath` ( ) ENGINE = InnoDB DEFAULT CHARSET = utf8; -- new resource will bind classpath(id=1) automatically -insert into classpath(id, path, note, preset, create_by, update_by, create_at, update_at) values(1, 'all', 'preset classpath, all resources belong to', 1, 'system', 'system', unix_timestamp(now()), unix_timestamp(now())); +insert into classpath(id, path, note, preset, create_by, update_by, create_at, update_at) values(1, 'all.resources', 'preset classpath, all resources belong to', 1, 'system', 'system', unix_timestamp(now()), unix_timestamp(now())); CREATE TABLE `classpath_resource` ( `id` bigint unsigned not null auto_increment,