Seed db with Professional Qualifications construct

This commit is contained in:
Alex Basson 2021-09-15 11:57:46 -04:00
parent c5bd1a9b3f
commit acac8f67b0
11 changed files with 67 additions and 21 deletions

View file

@ -10,11 +10,10 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20181221180917) do
ActiveRecord::Schema.define(version: 20210915151547) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
enable_extension "pg_stat_statements"
create_table "attempts", force: :cascade do |t|
t.integer "recipient_id"
@ -49,6 +48,15 @@ ActiveRecord::Schema.define(version: 20181221180917) do
t.index ["slug"], name: "index_categories_on_slug", unique: true, using: :btree
end
create_table "constructs", force: :cascade do |t|
t.string "construct_id"
t.string "name"
t.float "watch_low_benchmark"
t.float "growth_low_benchmark"
t.float "approval_low_benchmark"
t.float "ideal_low_benchmark"
end
create_table "districts", force: :cascade do |t|
t.string "name"
t.integer "state_id"