Sha256: 2096f7c08f9ede14d92de9791cf59565995d314d532f64b532e6b824e9ca9aee

Contents?: true

Size: 1.95 KB

Versions: 7

Compression:

Stored size: 1.95 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: 20160129182544) do

  create_table "addresses", force: :cascade do |t|
    t.string   "street"
    t.string   "city"
    t.string   "state"
    t.string   "zip"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  create_table "comments", force: :cascade do |t|
    t.integer  "user_id"
    t.integer  "todo_item_id"
    t.string   "comment"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  create_table "todo_items", force: :cascade do |t|
    t.string   "title"
    t.text     "description"
    t.boolean  "complete"
    t.datetime "created_at"
    t.datetime "updated_at"
    t.integer  "user_id"
    t.integer  "comment_id"
  end

  create_table "users", force: :cascade do |t|
    t.string   "first_name"
    t.string   "last_name"
    t.string   "email"
    t.datetime "created_at"
    t.datetime "updated_at"
    t.string   "address_street"
    t.string   "address_city"
    t.string   "address_state"
    t.string   "address_zip"
    t.integer  "address_id"
    t.string   "address2_street"
    t.string   "address2_city"
    t.string   "address2_state"
    t.string   "address2_zip"
    t.string   "data_string"
    t.integer  "data_times"
    t.integer  "test_enum"
  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hyper-mesh-0.6.0 reactive_record_test_app/db/schema.rb
hyper-mesh-0.5.4 reactive_record_test_app/db/schema.rb
hyper-mesh-0.5.3 reactive_record_test_app/db/schema.rb
hyper-mesh-0.5.2 reactive_record_test_app/db/schema.rb
hyper-mesh-0.5.1 reactive_record_test_app/db/schema.rb
hyper-mesh-0.5.0 reactive_record_test_app/db/schema.rb
hyper-mesh-0.4.0 reactive_record_test_app/db/schema.rb