redmine/db/migrate/20090704172350_populate_users_type.rb
2014-01-07 10:03:11 +00:00

9 lines
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