mastodon/db/migrate/20260119153538_add_language_to_collections.rb
2026-01-20 13:22:54 +00:00

8 lines
164 B
Ruby

# frozen_string_literal: true
class AddLanguageToCollections < ActiveRecord::Migration[8.0]
def change
add_column :collections, :language, :string
end
end