Skip to content

Instantly share code, notes, and snippets.

@barek2k2
Created June 29, 2014 15:57
Show Gist options
  • Save barek2k2/ce41f942f17f1cdfa6a9 to your computer and use it in GitHub Desktop.
Save barek2k2/ce41f942f17f1cdfa6a9 to your computer and use it in GitHub Desktop.
question table's schema
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