Files
astuto/db/migrate/20220715092725_add_status_to_tenants.rb

6 lines
122 B
Ruby
Raw Permalink Normal View History

2022-07-18 10:47:54 +02:00
class AddStatusToTenants < ActiveRecord::Migration[6.0]
def change
add_column :tenants, :status, :integer
end
end