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
|
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')
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user