mirror of
https://github.com/glitch-soc/mastodon
synced 2025-04-25 03:04:51 +00:00
7 lines
227 B
Ruby
7 lines
227 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddLocalToStatuses < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :statuses, :local, :boolean, null: true, default: nil # rubocop:disable Rails/ThreeStateBooleanColumn
|
|
end
|
|
end
|