mirror of
https://github.com/glitch-soc/mastodon
synced 2025-08-11 23:31:27 +00:00
7 lines
177 B
Ruby
7 lines
177 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddSensitiveToStatuses < ActiveRecord::Migration[5.0]
|
|
def change
|
|
add_column :statuses, :sensitive, :boolean, default: false
|
|
end
|
|
end
|