Class: AddPlanToUser

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/exvo_notifications/templates/migration.rb

Class Method Summary collapse

Class Method Details

.downObject



6
7
8
# File 'lib/generators/exvo_notifications/templates/migration.rb', line 6

def self.down
  remove_column :users, :plan
end

.upObject



2
3
4
# File 'lib/generators/exvo_notifications/templates/migration.rb', line 2

def self.up
  add_column :users, :plan, :string
end