view db/migrate/20130215073721_change_users_lastname_length_to_255.rb @ 1550:7d825cbd76c8 feature_1136

Ensure we don't leave a git repo lying around for a repo with no corresponding (even if empty) authormap
author Chris Cannam
date Tue, 12 Jan 2016 17:22:27 +0000
parents 261b3d9a4903
children
line wrap: on
line source
class ChangeUsersLastnameLengthTo255 < ActiveRecord::Migration
  def self.up
    change_column :users, :lastname, :string, :limit => 255, :default => '', :null => false
  end

  def self.down
    change_column :users, :lastname, :string, :limit => 30, :default => '', :null => false
  end
end