7 lines
168 B
Ruby
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
|