Sha256: e84ad41611099ef79ee7465773c6a3829ec538d9501c10717585c2153b1600c9
Contents?: true
Size: 1.44 KB
Versions: 14
Compression:
Stored size: 1.44 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. # # This file is the source Rails uses to define your schema when running `rails # db:schema:load`. When creating a new database, `rails db:schema:load` tends to # be faster and is potentially less error prone than running all of your # migrations from scratch. Old migrations may fail to apply correctly if those # migrations use external dependencies or application code. # # It's strongly recommended that you check this file into your version control system. ActiveRecord::Schema.define(version: 2019_07_16_135241) do create_table "isle", force: :cascade do |t| t.string "name" t.binary "map" t.datetime "created_at" t.datetime "updated_at" end create_table "trees", force: :cascade do |t| t.string "name" t.integer "owner_id" t.integer "cutter_id" t.integer "island_id" t.datetime "created_at" t.datetime "updated_at" t.integer "age" t.index ["cutter_id"], name: "index_trees_on_cutter_id" t.index ["island_id"], name: "index_trees_on_island_id" t.index ["owner_id"], name: "index_trees_on_owner_id" end create_table "users", force: :cascade do |t| t.string "name" t.datetime "created_at" t.datetime "updated_at" t.integer "title" end end
Version data entries
14 entries across 14 versions & 1 rubygems