Rename options v3 table

This commit is contained in:
WQY\qiong
2023-03-02 22:39:47 +08:00
parent 1e300ae258
commit 3f3b2508b1
2 changed files with 3 additions and 3 deletions

View File

@@ -38,13 +38,13 @@ insert into options (key, value) values
; ;
create table options_3 create table options_v3
( (
key text primary key key text primary key
, value text not null , value text not null
); );
insert into options_3 (key, value) values insert into options_v3 (key, value) values
('FLOW_UNITS', 'GPM') ('FLOW_UNITS', 'GPM')
, ('PRESSURE_UNITS', 'PSI') , ('PRESSURE_UNITS', 'PSI')
, ('HEADLOSS_MODEL', 'H-W') , ('HEADLOSS_MODEL', 'H-W')

View File

@@ -1,5 +1,5 @@
-- [OPTIONS] -- [OPTIONS]
drop table if exists options_3; drop table if exists options_v3;
drop table if exists options; drop table if exists options;