10 lines
278 B
Ruby
10 lines
278 B
Ruby
class CreateNotifications < ActiveRecord::Migration
|
|
def change
|
|
create_table :notifications do |t|
|
|
t.belongs_to :user, index: true, foreign_key: true
|
|
t.belongs_to :activity, index: true, foreign_key: true
|
|
t.boolean :read, default: false
|
|
end
|
|
end
|
|
end
|