about summary refs log tree commit diff
path: root/db/migrate/20200826125821_add_username_and_nospam_to_users.rb
blob: 9a964b980ec45b5dd47ed95338a769dab3c2a999 (plain) (blame)
1
2
3
4
5
6
class AddUsernameAndNospamToUsers < ActiveRecord::Migration[5.2]
  def change
    add_column :users, :username, :string
    add_column :users, :kobold, :string
  end
end