14 lines
367 B
Ruby
14 lines
367 B
Ruby
class CreateNotifications < ActiveRecord::Migration
|
|
def change
|
|
create_table :notifications do |t|
|
|
t.integer :notification_type, null: false
|
|
t.references :user, null: false
|
|
t.string :data, null: false
|
|
t.boolean :read, default: false, null: false
|
|
t.timestamps
|
|
end
|
|
|
|
add_index :notifications, [:user_id, :created_at]
|
|
end
|
|
end
|