nas/db/migrate/20230812130612_add_limited_scope_to_statuses.rb
2023-08-12 22:49:28 +09:00

7 lines
168 B
Ruby

# frozen_string_literal: true
class AddLimitedScopeToStatuses < ActiveRecord::Migration[7.0]
def change
add_column :statuses, :limited_scope, :integer
end
end