mastodon/db/migrate/20250605110215_add_legacy_to_quotes.rb

8 lines
180 B
Ruby

# frozen_string_literal: true
class AddLegacyToQuotes < ActiveRecord::Migration[8.0]
def change
add_column :quotes, :legacy, :boolean, null: false, default: false
end
end