mirror of
https://github.com/mastodon/mastodon.git
synced 2025-07-11 23:13:16 +00:00
8 lines
180 B
Ruby
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
|