Commit d442dac2ed20062e8ce192b5269c9b963a1410aa
1 parent
c717cb2c
Exists in
master
and in
27 other branches
chat: add chat_messages to schema
Showing
1 changed file
with
8 additions
and
0 deletions
Show diff stats
db/schema.rb
... | ... | @@ -241,6 +241,14 @@ ActiveRecord::Schema.define(:version => 20150122165042) do |
241 | 241 | t.datetime "updated_at" |
242 | 242 | end |
243 | 243 | |
244 | + create_table "chat_messages", :force => true do |t| | |
245 | + t.integer "to_id" | |
246 | + t.integer "from_id" | |
247 | + t.string "body" | |
248 | + t.datetime "created_at", :null => false | |
249 | + t.datetime "updated_at", :null => false | |
250 | + end | |
251 | + | |
244 | 252 | create_table "comments", :force => true do |t| |
245 | 253 | t.string "title" |
246 | 254 | t.text "body" | ... | ... |