This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-04-09 02:25:30 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-10 14:41:25 -08:00
|
|
|
class AddLocalOnlyFlagToStatuses < ActiveRecord::Migration[5.1]
|
|
|
|
def change
|
|
|
|
add_column :statuses, :local_only, :boolean
|
|
|
|
end
|
|
|
|
end
|