Skip to content

Commit

Permalink
fix #446 (#447)
Browse files Browse the repository at this point in the history
  • Loading branch information
smnorris authored Jan 10, 2024
1 parent ca71829 commit f86623d
Show file tree
Hide file tree
Showing 23 changed files with 929 additions and 809 deletions.
9 changes: 7 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,10 @@ Changes

All issue numbers are relative to https://github.com/smnorris/bcfishpass/issues

v0.1.0 (2024-)
------------------
v0.1.1 (2024-)
-------------------
-

v0.1.0 (2024-01-08)
-------------------
- start regularly tagging stable commits to help ensure stability with scheduled processing
8 changes: 4 additions & 4 deletions db/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ PSQL="psql $DATABASE_URL -v ON_ERROR_STOP=1"

# load schemas, tables functions
for sql in schemas/*.sql ; do
$PSQL -f "$sql"
$PSQL -f "$sql"
done

for sql in tables/*.sql ; do
$PSQL -f "$sql"
$PSQL -f "$sql"
done

for sql in views/*.sql ; do
$PSQL -f "$sql"
$PSQL -f "$sql"
done

for sql in functions/*.sql ; do
$PSQL -f "$sql"
$PSQL -f "$sql"
done
81 changes: 0 additions & 81 deletions db/views/01_crossings_feature_type_vw.sql

This file was deleted.

Loading

0 comments on commit f86623d

Please sign in to comment.