Sha256: 059df54b99e824597d40ba3f7a70ca4bd8bfe3de852345d0a21e730b9db9ce48
Contents?: true
Size: 2 KB
Versions: 3
Compression:
Stored size: 2 KB
Contents
# 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 to check this file into your version control system. ActiveRecord::Schema.define(:version => 20111206151426) do create_table "oauth_access_grants", :force => true do |t| t.integer "resource_owner_id", :null => false t.integer "application_id", :null => false t.string "token", :null => false t.integer "expires_in", :null => false t.string "redirect_uri", :null => false t.datetime "created_at", :null => false t.datetime "revoked_at" t.string "scopes" end create_table "oauth_access_tokens", :force => true do |t| t.integer "resource_owner_id", :null => false t.integer "application_id", :null => false t.string "token", :null => false t.string "refresh_token" t.integer "expires_in" t.datetime "revoked_at" t.datetime "created_at", :null => false t.string "scopes" end create_table "oauth_applications", :force => true do |t| t.string "name", :null => false t.string "uid", :null => false t.string "secret", :null => false t.string "redirect_uri", :null => false t.datetime "created_at" t.datetime "updated_at" end create_table "users", :force => true do |t| t.string "name" t.datetime "created_at" t.datetime "updated_at" end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
doorkeeper-0.3.4 | spec/dummy/db/schema.rb |
doorkeeper-0.3.3 | spec/dummy/db/schema.rb |
doorkeeper-0.3.2 | spec/dummy/db/schema.rb |