From 0405e5978492de122805e2b6e430b3874003bf6a Mon Sep 17 00:00:00 2001 From: Eric Schultz Date: Tue, 9 Feb 2021 13:26:13 -0600 Subject: [PATCH] Replace all uses of db:structure:load --- db/schema.rb | 2 +- docs/docker.md | 2 +- script/test.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/db/schema.rb b/db/schema.rb index d7b601c8..74d81bd3 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -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" diff --git a/docs/docker.md b/docs/docker.md index d0ac2f4e..0e5cbd30 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -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 diff --git a/script/test.sh b/script/test.sh index 01f488e4..54a291eb 100755 --- a/script/test.sh +++ b/script/test.sh @@ -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