Sha256: 55d62c1b49db02946889fb665f108631c72825eef4273ee9141572aae4f2e31c
Contents?: true
Size: 1.71 KB
Versions: 2
Compression:
Stored size: 1.71 KB
Contents
# This file is autogenerated. Instead of editing this file, please use the # migrations feature of ActiveRecord to incrementally modify your database, and # then regenerate this schema definition. ActiveRecord::Schema.define(:version => 8) do create_table "addresses", :force => true do |t| t.integer "user_id", :null => false t.string "name" t.string "line_1", :default => "", :null => false t.string "line_2" t.string "city", :default => "", :null => false t.integer "state_id", :null => false t.string "province_region" t.string "zip_postal_code" t.integer "country_id", :null => false t.float "lat" t.float "long" end create_table "sellers", :force => true do |t| t.integer "user_id", :null => false t.string "company_name" t.datetime "created_at" t.datetime "updated_at" t.float "capitalization", :default => 0.0 t.string "mission_statement" end create_table "states", :force => true do |t| t.string "name", :default => "", :null => false t.string "abbreviation", :default => "", :null => false end create_table "users", :force => true do |t| t.string "login", :limit => 64, :default => "", :null => false t.string "email", :default => "", :null => false t.string "crypted_password", :limit => 64, :default => "", :null => false t.string "salt", :limit => 64, :default => "", :null => false t.datetime "created_at" t.datetime "updated_at" t.boolean "deleted", :default => false end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ultrasphinx-1.5.3 | test/integration/app/db/schema.rb |
ultrasphinx-1.6 | test/integration/app/db/schema.rb |