您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

20211213122100_remove_identity_url_from_users.rb 136B

12345
  1. class RemoveIdentityUrlFromUsers < ActiveRecord::Migration[6.1]
  2. def change
  3. remove_column :users, :identity_url, :string
  4. end
  5. end