Rename options v3 table
This commit is contained in:
@@ -38,13 +38,13 @@ insert into options (key, value) values
|
||||
;
|
||||
|
||||
|
||||
create table options_3
|
||||
create table options_v3
|
||||
(
|
||||
key text primary key
|
||||
, value text not null
|
||||
);
|
||||
|
||||
insert into options_3 (key, value) values
|
||||
insert into options_v3 (key, value) values
|
||||
('FLOW_UNITS', 'GPM')
|
||||
, ('PRESSURE_UNITS', 'PSI')
|
||||
, ('HEADLOSS_MODEL', 'H-W')
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
-- [OPTIONS]
|
||||
|
||||
drop table if exists options_3;
|
||||
drop table if exists options_v3;
|
||||
|
||||
drop table if exists options;
|
||||
|
||||
Reference in New Issue
Block a user