Sha256: c192078602d84114f3f2d604e17e0a177b15929eca5603094401495a609172f2

Contents?: true

Size: 1.67 KB

Versions: 7

Compression:

Stored size: 1.67 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: 20140519231105) do

  create_table "museum_case_details", force: true do |t|
    t.integer  "museum_case_id"
    t.integer  "museum_loupe_id"
    t.string   "key"
    t.text     "value"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index "museum_case_details", ["museum_loupe_id", "museum_case_id", "key"], name: "key", unique: true

  create_table "museum_cases", force: true do |t|
    t.string   "name"
    t.string   "title"
    t.text     "sort"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index "museum_cases", ["name"], name: "index_museum_cases_on_name", unique: true

  create_table "museum_loupes", force: true do |t|
    t.string   "title"
    t.string   "slug"
    t.string   "uri_template"
    t.string   "data_format"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  add_index "museum_loupes", ["slug"], name: "index_museum_loupes_on_slug", unique: true

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
museum-0.3.0 spec/dummy/db/schema.rb
museum-0.2.2 spec/dummy/db/schema.rb
museum-0.1.5 spec/dummy/db/schema.rb
museum-0.1.4 spec/dummy/db/schema.rb
museum-0.1.3 spec/dummy/db/schema.rb
museum-0.1.2 spec/dummy/db/schema.rb
museum-0.1.1 spec/dummy/db/schema.rb