Redmine/db/migrate/20090704172350_populate_use...

9 lines
155 B
Ruby

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