mirror of
https://github.com/mastodon/mastodon.git
synced 2025-02-05 17:01:45 +01:00
6 lines
157 B
Ruby
6 lines
157 B
Ruby
class AddVisibilityToStatuses < ActiveRecord::Migration[5.0]
|
|
def change
|
|
add_column :statuses, :visibility, :integer, null: false, default: 0
|
|
end
|
|
end
|