-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move cw/mad tables into db/tables/source
- Loading branch information
Showing
3 changed files
with
16 additions
and
14 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
-- do not drop/re-create these on db schema refresh, they are stable and we | ||
-- do not want to re-load these data every time db schema is updated | ||
|
||
create table if not exists bcfishpass.discharge | ||
( | ||
linear_feature_id bigint primary key, | ||
watershed_group_code text , | ||
mad_mm double precision, | ||
mad_m3s double precision | ||
); | ||
|
||
create table if not exists bcfishpass.channel_width ( | ||
linear_feature_id bigint primary key, | ||
channel_width_source text , | ||
channel_width double precision | ||
); |