Created
June 29, 2014 15:57
-
-
Save barek2k2/ce41f942f17f1cdfa6a9 to your computer and use it in GitHub Desktop.
question table's schema
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ActiveRecord::Schema.define(version: 20140628141443) do | |
# These are extensions that must be enabled in order to support this database | |
enable_extension "plpgsql" | |
create_table "questions", force: true do |t| | |
t.string "title" | |
t.text "description" | |
t.integer "next_question_id_for_yes" | |
t.integer "next_question_id_for_no" | |
t.boolean "start", default: false | |
t.datetime "created_at" | |
t.datetime "updated_at" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment