12 lines
270 B
Ruby
12 lines
270 B
Ruby
|
class CreateNotifications < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :notifications do |t|
|
||
|
t.references :user, index: true, null: false
|
||
|
t.string :message
|
||
|
t.boolean :read, default: false
|
||
|
|
||
|
t.timestamps null: false
|
||
|
end
|
||
|
end
|
||
|
end
|