Commit d4059096 by biao

1

parent 6947e377
##----system_const_dat create
##----system_constant_dat create
DROP TABLE IF EXISTS system_const_dat;
CREATE TABLE IF NOT EXISTS system_const_dat(
DROP TABLE IF EXISTS system_constant_dat;
CREATE TABLE IF NOT EXISTS system_constant_dat(
id bigint unsigned NOT NULL PRIMARY KEY auto_increment,
registration_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
name varchar(64) NOT NULL,
......@@ -10,7 +10,7 @@ CREATE TABLE IF NOT EXISTS system_const_dat(
delete_flg tinyint(1) NOT NULL DEFAULT '0'
) ENGINE = INNODB DEFAULT CHARSET=utf8mb4;
Create INDEX system_const_dat_name_idx ON system_const_dat(name);
Create INDEX system_constant_dat_name_idx ON system_constant_dat(name);
##----government_mst create
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment