discourse/db/migrate/20120622200242_create_notifications.rb
2013-02-05 14:16:51 -05:00

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