Sha256: f58c225084086d8280582ed312ac3888f0d447f45629345b3af124ef09bc874f

Contents?: true

Size: 1.92 KB

Versions: 2

Compression:

Stored size: 1.92 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 ActiveRecord 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 to check this file into your version control system.

ActiveRecord::Schema.define(:version => 7) do

  create_table "line_items", :force => true do |t|
    t.integer "product_id",                                :null => false
    t.integer "order_id",                                  :null => false
    t.integer "quantity",                                  :null => false
    t.decimal "total_price", :precision => 8, :scale => 2, :null => false
  end

  add_index "line_items", ["product_id"], :name => "fk_line_item_products"
  add_index "line_items", ["order_id"], :name => "fk_line_item_orders"

  create_table "orders", :force => true do |t|
    t.string "name"
    t.text   "address"
    t.string "email"
    t.string "pay_type", :limit => 10
  end

  create_table "products", :force => true do |t|
    t.string  "title"
    t.text    "description"
    t.string  "image_url"
    t.decimal "price",       :precision => 8, :scale => 2, :default => 0.0
  end

  create_table "sessions", :force => true do |t|
    t.string   "session_id"
    t.text     "data"
    t.datetime "updated_at"
  end

  add_index "sessions", ["session_id"], :name => "index_sessions_on_session_id"

  create_table "users", :force => true do |t|
    t.string "name"
    t.string "hashed_password"
    t.string "salt"
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
amrita2-2.0.1 sample/depot/db/schema.rb
amrita2-2.0.2 sample/depot/db/schema.rb