選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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