Class: AddNameToModuleAction

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

Class Method Summary collapse

Class Method Details

.downObject

Raises:

  • (ActiveRecord::IrreversibleMigration)


6
7
8
9
10
# File 'lib/generators/permission/templates/module_action_migration_existing.rb', line 6

def self.down
  # By default, we don't want to make any assumption about how to roll back a migration when your
  # model already existed. Please edit below which fields you would like to remove in this migration.
  raise ActiveRecord::IrreversibleMigration
end

.upObject



2
3
4
# File 'lib/generators/permission/templates/module_action_migration_existing.rb', line 2

def self.up
  change_column :module_actions,:name,:string
end