mirror of
https://github.com/discourse/discourse.git
synced 2026-09-05 04:40:41 -05:00
FEATURE: Overwrite server side I18n keys with API
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
class CreateTranslationOverrides < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :translation_overrides, force: true do |t|
|
||||
t.string :locale, length: 30, null: false
|
||||
t.string :translation_key, null: false
|
||||
t.string :value, null: false
|
||||
t.timestamps null: false
|
||||
end
|
||||
|
||||
add_index :translation_overrides, [:locale, :translation_key], unique: true
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user