1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2024-12-30 12:20:35 +00:00
mastodon/db/migrate/20171210213213_add_local_only_flag_to_statuses.rb

6 lines
135 B
Ruby

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