class CreateNotificationGroups < ActiveRecord::Migration[6.0]
  def self.up
    create_table :notification_groups do |t|
      t.string :name
      t.string :notification_type
      t.string :mobile
      t.string :email
      t.integer :organisation_id
      t.timestamps
    end
  end
  def self.down
    drop_table :notification_groups 
  end
end
