OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/db/migrate/20130315124655_add_longer_l...

14 lines
336 B

class AddLongerLoginToUsers < ActiveRecord::Migration
def self.up
change_table :users do |t|
t.change "login", :string, :limit => 256, :default => "", :null => false
end
end
def self.down
change_table :users do |t|
t.change "login", :string, :limit => 30, :default => "", :null => false
end
end
end