Files
grecia/db/migrate/20150928115005_create_notifications.rb
Julian Herrero d9ba3edc2a mostrar notificaciones a los usuarios cuando alguien comenta en su
debate o responde a su comentario
2016-01-05 17:43:44 +01:00

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