about summary refs log tree commit diff
path: root/db/migrate/20171210213213_add_local_only_flag_to_statuses.rb
blob: 010503b10f7e7b9d6681be4bc7d6ceabdb570ee8 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddLocalOnlyFlagToStatuses < ActiveRecord::Migration[5.1]
  def change
    add_column :statuses, :local_only, :boolean
  end
end