class AddNameToModuleGroup

Public Class Methods

down() click to toggle source
# File lib/generators/permission/templates/module_group_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
up() click to toggle source
# File lib/generators/permission/templates/module_group_migration_existing.rb, line 2
def self.up
  change_column :module_groups,:name,:string
end