2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

FEATURE: Overwrite server side I18n keys with API

This commit is contained in:
Robin Ward 2015-11-13 16:34:13 -05:00
parent 3720783c1b
commit 060ce9bf2a
4 changed files with 61 additions and 0 deletions

View file

@ -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