Fixed #189 - Increase data size of tanslation strings.
This commit is contained in:
parent
49b660d84f
commit
33c60a553d
1 changed files with 1 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
class IncreaseColumnLength < ActiveRecord::Migration
|
class IncreaseColumnLength < ActiveRecord::Migration
|
||||||
def change
|
def change
|
||||||
change_table(:translations) do |t|
|
change_table(:translations) do |t|
|
||||||
|
# test
|
||||||
t.change :source, :string, limit: 500, null: false
|
t.change :source, :string, limit: 500, null: false
|
||||||
t.change :target, :string, limit: 500, null: false
|
t.change :target, :string, limit: 500, null: false
|
||||||
t.change :target_initial, :string, limit: 500, null: false
|
t.change :target_initial, :string, limit: 500, null: false
|
||||||
|
|
Loading…
Reference in a new issue