mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:30:26 -06:00
9 lines
273 B
Ruby
9 lines
273 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddStatusToTranslationOverrides < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
add_column :translation_overrides, :original_translation, :text
|
||
|
add_column :translation_overrides, :status, :integer, null: false, default: 0
|
||
|
end
|
||
|
end
|