2023-10-19 16:37:34 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-04-19 09:10:31 -07:00
|
|
|
class CreateNotifications < ActiveRecord::Migration[4.2]
|
2014-12-13 10:30:10 -08:00
|
|
|
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
|
|
|
|
end
|
|
|
|
end
|