working on question_lists

This commit is contained in:
Jared Cosulich 2017-03-05 12:23:11 -05:00
parent d731049fc6
commit cc84c3bbda
26 changed files with 498 additions and 10 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: 20170304020530) do
ActiveRecord::Schema.define(version: 20170305155018) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -32,6 +32,14 @@ ActiveRecord::Schema.define(version: 20170304020530) do
t.datetime "updated_at", null: false
end
create_table "question_lists", force: :cascade do |t|
t.string "name"
t.text "description"
t.text "question_ids"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
create_table "questions", force: :cascade do |t|
t.string "text"
t.string "option1"