We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 637ddef commit 60c244bCopy full SHA for 60c244b
.github/workflows/ci.yml
@@ -99,17 +99,15 @@ jobs:
99
run: |
100
pg_dump "$DATABASE_URL" \
101
--exclude-table-data=storage.migrations \
102
- | grep -v '^\\restrict' \
103
- | grep -v '^\\unrestrict' \
+ --restrict-key=test \
104
> before.sql
105
106
psql "$DATABASE_URL" -c "DROP TABLE IF EXISTS storage.migrations;"
107
npm run migration:run
108
109
110
111
112
113
> after.sql
114
115
diff before.sql after.sql || (echo 'Schema mismatch!'; exit 1)
0 commit comments