DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class MigrationClass < ActiveRecord::Migration[4.2] (called from require at bin/rails:4)
10 lines
283 B
Ruby
10 lines
283 B
Ruby
class CreateNotifications < ActiveRecord::Migration[4.2]
|
|
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
|