diff --git a/db/migrate/20160802144900_increase_column_length.rb b/db/migrate/20160802144900_increase_column_length.rb new file mode 100644 index 000000000..eeb8b98dc --- /dev/null +++ b/db/migrate/20160802144900_increase_column_length.rb @@ -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