2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 09:10:25 +08:00
discourse/db/migrate/20160408175727_add_compiled_js_to_translation_overrides.rb

6 lines
167 B
Ruby
Raw Normal View History

class AddCompiledJsToTranslationOverrides < ActiveRecord::Migration[4.2]
def change
add_column :translation_overrides, :compiled_js, :text, null: true
end
end