Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

20090704172350_populate_users_type.rb 166B

12345678
  1. class PopulateUsersType < ActiveRecord::Migration[4.2]
  2. def self.up
  3. Principal.where("type IS NULL").update_all("type = 'User'")
  4. end
  5. def self.down
  6. end
  7. end