mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
13 lines
367 B
Ruby
13 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
|