Add queued attribute to messages

This commit is contained in:
Martin Lensment 2014-11-06 10:35:39 +02:00
parent 6f356416db
commit c0edfd4b5b
2 changed files with 2 additions and 0 deletions

View file

@ -5,6 +5,7 @@ class CreateMessages < ActiveRecord::Migration
t.string :body
t.string :object_type
t.string :object
t.boolean :queued
t.timestamps
end

View file

@ -204,6 +204,7 @@ ActiveRecord::Schema.define(version: 20141105150721) do
t.string "body"
t.string "object_type"
t.string "object"
t.boolean "queued"
t.datetime "created_at"
t.datetime "updated_at"
end