Newer
Older
dmpopidor / db / migrate / 20180328115455_create_notifications.rb
@Quentin Sonrel Quentin Sonrel on 16 May 2018 331 bytes Implemented Notifications
class CreateNotifications < ActiveRecord::Migration
  def change
    create_table :notifications do |t|
      t.integer :notification_type
      t.string :title
      t.integer :level
      t.text :body
      t.boolean :dismissable
      t.date :starts_at
      t.date :expires_at

      t.timestamps null: false
    end
  end
end