-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.rb
102 lines (90 loc) · 3.04 KB
/
schema.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# 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 to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20120412225032) do
create_table "addresses", :force => true do |t|
t.string "line1"
t.string "line2"
t.string "city"
t.string "state"
t.string "zip"
t.string "category"
t.datetime "created_at"
t.datetime "updated_at"
t.datetime "valid_until"
t.integer "user_id"
end
create_table "amazons", :force => true do |t|
t.string "email"
t.string "full_name"
t.string "country"
t.string "phone_number"
t.integer "address_id"
t.datetime "created_at"
t.datetime "updated_at"
t.string "password"
end
add_index "amazons", ["address_id"], :name => "index_amazons_on_address_id"
create_table "dmvs", :force => true do |t|
t.string "driver_license"
t.string "ssn"
t.integer "address_id"
t.string "county"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "dmvs", ["address_id"], :name => "index_dmvs_on_address_id"
create_table "ebays", :force => true do |t|
t.string "first_name"
t.string "last_name"
t.string "country"
t.string "phone_number"
t.integer "address_id"
t.datetime "created_at"
t.datetime "updated_at"
t.string "username"
end
add_index "ebays", ["address_id"], :name => "index_ebays_on_address_id"
create_table "subscribers", :force => true do |t|
t.string "name"
t.string "img_path"
t.string "type"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "subscriptions", :force => true do |t|
t.integer "subscriber_id"
t.integer "address_id"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "subscribable_id"
t.string "subscribable_type"
end
create_table "users", :force => true do |t|
t.string "first_name"
t.string "last_name"
t.string "gender"
t.string "email"
t.string "fb_uid"
t.datetime "created_at"
t.datetime "updated_at"
t.string "crypted_password"
t.string "password_salt"
t.string "persistence_token"
t.datetime "last_login_at"
t.datetime "last_request_at"
t.string "current_login_ip"
t.string "last_login_ip"
t.integer "login_count", :default => 0, :null => false
t.string "status", :default => "pending"
end
end