Sha256: 50343a6c640c53e0a9ec322e4e225e6790d262c1e1aa5a5307c4d279f7235a29

Contents?: true

Size: 1.65 KB

Versions: 1

Compression:

Stored size: 1.65 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 that you check this file into your version control system.

ActiveRecord::Schema.define(version: 20130708084009) do

  create_table "posable_ones", force: true do |t|
    t.string  "text"
    t.boolean "private"
    t.integer "user_id"
  end

  create_table "posable_twos", force: true do |t|
    t.string  "text"
    t.boolean "private"
    t.integer "user_id"
  end

  create_table "pose_assignments", force: true do |t|
    t.integer "word_id",                 null: false
    t.integer "posable_id",              null: false
    t.string  "posable_type", limit: 60, null: false
  end

  add_index "pose_assignments", ["posable_id"], name: "index_pose_assignments_on_posable_id"
  add_index "pose_assignments", ["word_id"], name: "index_pose_assignments_on_word_id"

  create_table "pose_words", force: true do |t|
    t.string "text", limit: 80, null: false
  end

  add_index "pose_words", ["text"], name: "index_pose_words_on_text"

  create_table "users", force: true do |t|
    t.string "name"
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pose-3.0.0 spec/dummy/db/schema.rb