mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
Seed db with Professional Qualifications construct
This commit is contained in:
parent
c5bd1a9b3f
commit
acac8f67b0
11 changed files with 67 additions and 21 deletions
12
db/schema.rb
12
db/schema.rb
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue