11 lines
353 B
11 lines
353 B
5 years ago
|
class ModifyDescriptionForHacks < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
change_column :hacks, :description, :longtext
|
||
|
change_column :hack_codes, :code, :longtext
|
||
|
change_column :hack_user_lastest_codes, :code, :longtext
|
||
|
change_column :hack_user_codes, :code, :longtext
|
||
|
change_column :hack_user_debugs, :code, :longtext
|
||
|
|
||
|
end
|
||
|
end
|