Fixed #189 - Increase data size of tanslation strings.
This commit is contained in:
parent
f710c033c1
commit
49b660d84f
1 changed files with 9 additions and 0 deletions
9
db/migrate/20160802144900_increase_column_length.rb
Normal file
9
db/migrate/20160802144900_increase_column_length.rb
Normal 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
|
Loading…
Reference in a new issue