mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-05 09:55:03 +01:00
6 lines
155 B
Ruby
6 lines
155 B
Ruby
|
class AddLanguageToStatuses < ActiveRecord::Migration[5.0]
|
||
|
def change
|
||
|
add_column :statuses, :language, :string, null: false, default: 'en'
|
||
|
end
|
||
|
end
|