Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
class CreateNotifications < ActiveRecord::Migration[4.2]
def change
create_table :notifications do |t|
t.string :target_type
t.integer :target_id
t.integer :recipient_id
t.boolean :new
t.timestamps
end