notebook/db/migrate/20200420222939_create_notifications.rb
2020-04-20 17:35:10 -05:00

14 lines
313 B
Ruby

class CreateNotifications < ActiveRecord::Migration[6.0]
def change
create_table :notifications do |t|
t.references :user
t.string :message_html
t.string :icon, default: 'notifications_active'
t.datetime :happened_at
t.datetime :viewed_at
t.timestamps
end
end
end