Sha256: 136b0acb5b3ae65bf4c3f2ff401a2790b7560131d29d749b4915f92a9d9174ab
Contents?: true
Size: 1.7 KB
Versions: 2
Compression:
Stored size: 1.7 KB
Contents
# 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: 2012_10_31_041439) do create_table "projects", force: :cascade do |t| t.datetime "created_at" t.datetime "updated_at" end create_table "proposal_tokens", force: :cascade do |t| t.string "token", null: false t.string "email", null: false t.string "proposable_type", null: false t.string "resource_type" t.integer "resource_id" t.string "proposer_type" t.integer "proposer_id" t.text "arguments" t.datetime "accepted_at" t.datetime "reminded_at" t.datetime "expires_at", null: false t.datetime "updated_at", null: false t.datetime "created_at", null: false t.index ["email", "proposable_type", "resource_type", "resource_id", "expires_at", "accepted_at"], name: "proposal_idx", unique: true t.index ["token"], name: "index_proposal_tokens_on_token", unique: true end create_table "users", force: :cascade do |t| t.string "email" t.datetime "created_at" t.datetime "updated_at" end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
proposal-2.0.2 | test/dummy/db/schema.rb |
proposal-2.0.1 | test/dummy/db/schema.rb |