mirror of
https://github.com/mastodon/mastodon.git
synced 2026-04-25 16:05:44 -05:00
8 lines
164 B
Ruby
8 lines
164 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddLanguageToCollections < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_column :collections, :language, :string
|
|
end
|
|
end
|