mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-20 11:35:29 +01:00
6 lines
142 B
Ruby
6 lines
142 B
Ruby
class AddSpoilerToStatuses < ActiveRecord::Migration[5.0]
|
|
def change
|
|
add_column :statuses, :spoiler, :boolean, default: false
|
|
end
|
|
end
|