forked from maccman/holla
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.rb
More file actions
95 lines (85 loc) · 2.88 KB
/
Copy pathschema.rb
File metadata and controls
95 lines (85 loc) · 2.88 KB
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
# 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 => 20100907115424) do
create_table "assets", :force => true do |t|
t.string "data_file_name"
t.string "data_content_type"
t.integer "data_file_size"
t.datetime "data_updated_at"
t.string "preview_file_name"
t.string "preview_content_type"
t.integer "preview_file_size"
t.datetime "preview_updated_at"
t.datetime "created_at"
t.datetime "updated_at"
t.string "creator_id"
t.boolean "uploaded"
end
create_table "channels", :force => true do |t|
t.string "name"
t.string "creator_id"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "clients", :force => true do |t|
t.string "user_id"
t.integer "access_key_id"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "comments", :force => true do |t|
t.text "body"
t.string "klass"
t.string "klass_id"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "comments", ["klass"], :name => "index_comments_on_klass"
add_index "comments", ["klass_id"], :name => "index_comments_on_klass_id"
create_table "emails", :force => true do |t|
t.string "from"
t.string "to"
t.string "subject"
t.text "body"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "user_channels", :force => true do |t|
t.string "channel_id"
t.string "user_id"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "users", :force => true do |t|
t.string "first_name"
t.string "last_name"
t.string "email"
t.string "handle"
t.string "crypted_password"
t.string "password_salt"
t.string "persistence_token"
t.datetime "current_login_at"
t.string "current_login_ip"
t.string "avatar_file_name"
t.string "avatar_content_type"
t.integer "avatar_file_size"
t.datetime "avatar_updated_at"
t.string "single_access_token"
t.string "perishable_token"
t.integer "active_token_id"
t.string "oauth_token"
t.string "oauth_secret"
t.boolean "oauth"
t.datetime "created_at"
t.datetime "updated_at"
end
end