class CreateNotifications

Public Instance Methods

change() click to toggle source
# File lib/engine/db/migrate/20140118183403_create_notifications.rb, line 2
def change
  create_table :notifications do |t|
    t.string :reporter, default: ''
    t.text :message

    t.timestamps
  end
end