# encoding: UTF-8 # This file is auto-generated from the current state of the database. Instead # of editing this file, please use the migrations feature of Active Record to # incrementally modify your database, and then regenerate this schema definition. # # Note that this schema.rb definition is the authoritative source for your # database schema. If you need to create the application database on another # system, you should be using db:schema:load, not running all the migrations # from scratch. The latter is a flawed and unsustainable approach (the more migrations # you'll amass, the slower it'll run and the greater likelihood for issues). # # It's strongly recommended that you check this file into your version control system. ActiveRecord::Schema.define(version: 20141209001746) do create_table "comments", force: :cascade do |t| t.integer "user_id", limit: 4 t.integer "post_id", limit: 4 t.string "body", limit: 255 t.datetime "created_at" t.datetime "updated_at" end create_table "oauth_access_grants", force: :cascade do |t| t.integer "resource_owner_id", limit: 4, null: false t.integer "application_id", limit: 4, null: false t.string "token", limit: 255, null: false t.integer "expires_in", limit: 4, null: false t.string "redirect_uri", limit: 255, null: false t.datetime "created_at", null: false t.datetime "revoked_at" t.string "scopes", limit: 255 end add_index "oauth_access_grants", ["token"], name: "index_oauth_access_grants_on_token", unique: true, using: :btree create_table "oauth_access_tokens", force: :cascade do |t| t.integer "resource_owner_id", limit: 4 t.integer "application_id", limit: 4, null: false t.string "token", limit: 255, null: false t.string "refresh_token", limit: 255 t.integer "expires_in", limit: 4 t.datetime "revoked_at" t.datetime "created_at", null: false t.string "scopes", limit: 255 end add_index "oauth_access_tokens", ["refresh_token"], name: "index_oauth_access_tokens_on_refresh_token", unique: true, using: :btree add_index "oauth_access_tokens", ["resource_owner_id"], name: "index_oauth_access_tokens_on_resource_owner_id", using: :btree add_index "oauth_access_tokens", ["token"], name: "index_oauth_access_tokens_on_token", unique: true, using: :btree create_table "oauth_applications", force: :cascade do |t| t.string "name", limit: 255, null: false t.string "uid", limit: 255, null: false t.string "secret", limit: 255, null: false t.string "redirect_uri", limit: 255, null: false t.datetime "created_at" t.datetime "updated_at" t.string "scopes", limit: 255, default: "", null: false end add_index "oauth_applications", ["uid"], name: "index_oauth_applications_on_uid", unique: true, using: :btree create_table "posts", force: :cascade do |t| t.integer "user_id", limit: 4 t.string "title", limit: 255 t.string "body", limit: 255 t.datetime "created_at" t.datetime "updated_at" end create_table "users", force: :cascade do |t| t.string "name", limit: 255 t.string "email", limit: 255 t.datetime "created_at" t.datetime "updated_at" end end