1
0
espelhamento de https://github.com/redmine/redmine.git sincronizado 2024-08-06 09:06:37 +02:00
redmine/db/migrate/20090704172350_populate_users_type.rb
2014-01-07 10:03:11 +00:00

9 linhas
161 B
Ruby

class PopulateUsersType < ActiveRecord::Migration
def self.up
Principal.where("type IS NULL").update_all("type = 'User'")
end
def self.down
end
end