Files
astuto/db/migrate/20220622092039_add_status_to_users.rb
2022-06-24 14:39:35 +02:00

6 lines
118 B
Ruby

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