Replace all uses of db:structure:load

This commit is contained in:
Eric Schultz 2021-02-09 13:26:13 -06:00 committed by Eric Schultz
parent 277b7b9860
commit 0405e59784
3 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2021_02_09_002832) do
ActiveRecord::Schema.define(version: 2021_02_09_181808) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_stat_statements"

View file

@ -73,7 +73,7 @@ If you don't, file uploads WILL NOT WORK but it's not required.
### In console 2, fill the db
`./run rake db:create db:structure:load db:seed test:prepare`
`./run rake db:create db:schema:load db:seed test:prepare`
### Set up mailer info

View file

@ -1,2 +1,2 @@
#!/bin/bash
yarn ci && rake db:create db:structure:load db:migrate && RAILS_ENV=test rake db:create db:structure:load test:prepare && rake spec && yarn run build-all && yarn jest
yarn ci && rake db:create db:schema:load db:migrate && RAILS_ENV=test rake db:create db:schema:load test:prepare && rake spec && yarn run build-all && yarn jest