Sha256: e59ebb464f58e0d7b8f6f403311ac4e4b8e148f6965b5e213b2d48c2fa231b40

Contents?: true

Size: 1.97 KB

Versions: 2

Compression:

Stored size: 1.97 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: 20130916024403) do

  create_table "order_headers", force: true do |t|
    t.string   "order_number"
    t.string   "customer_name"
    t.datetime "created_at"
    t.datetime "updated_at"
    t.date     "order_date"
    t.integer  "bill_to_customer_id"
    t.string   "bill_to_address"
    t.string   "bill_to_contact"
    t.integer  "order_type_id"
  end

  create_table "order_lines", force: true do |t|
    t.integer  "order_header_id"
    t.decimal  "price"
    t.decimal  "quantity"
    t.string   "item_name"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  create_table "order_types", force: true do |t|
    t.string   "name"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  create_table "shipments", force: true do |t|
    t.integer  "order_line_id"
    t.datetime "shipping_date"
    t.decimal  "shipping_quantity"
    t.datetime "arriving_date"
    t.string   "status"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  create_table "test_scaflds", force: true do |t|
    t.string   "name"
    t.integer  "order_type_id"
    t.string   "title"
    t.date     "t_date"
    t.datetime "t_time"
    t.integer  "quantity"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ext_form-0.1.5 spec/dummy/db/schema.rb
ext_form-0.1.4 spec/dummy/db/schema.rb