6 lines
110 B
SQL
6 lines
110 B
SQL
create table region_wda
|
|
(
|
|
id text primary key references region(id)
|
|
, demand float8 not null default 0.0
|
|
);
|