Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pbalduino/5477064 to your computer and use it in GitHub Desktop.
Save pbalduino/5477064 to your computer and use it in GitHub Desktop.
E esse é o arquivo de migration que altera o nome
class ChangeNomeSizeInDepartamento < ActiveRecord::Migration
def up
change_column(:departamentos, :nome, :string, :limit => 60, :null => false)
end
def down
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment