Fixed #189 - Increase data size of tanslation strings.

This commit is contained in:
Rolf Schmidt 2016-08-02 15:01:29 +02:00
parent f710c033c1
commit 49b660d84f

View file

@ -0,0 +1,9 @@
class IncreaseColumnLength < ActiveRecord::Migration
def change
change_table(:translations) do |t|
t.change :source, :string, limit: 500, null: false
t.change :target, :string, limit: 500, null: false
t.change :target_initial, :string, limit: 500, null: false
end
end
end