bookstore/db/migrate/20210321213901_add_status_to_users.rb

8 lines
149 B
Ruby
Raw Normal View History

2021-03-22 03:16:29 +01:00
# frozen_string_literal: true
2021-03-21 23:43:09 +01:00
class AddStatusToUsers < ActiveRecord::Migration[6.1]
def change
add_column :users, :status, :integer
end
end