Redmine/db/migrate/20090704172350_populate_use...

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