bookstore/db/migrate/20210321213901_add_status_to_users.rb
2021-03-21 23:43:09 +01:00

5 lines
118 B
Ruby

class AddStatusToUsers < ActiveRecord::Migration[6.1]
def change
add_column :users, :status, :integer
end
end