2020-08-07 01:14:14 +02:00
|
|
|
class ExtendComments < ActiveRecord::Migration[4.2]
|
2009-01-06 11:49:19 +01:00
|
|
|
def self.up
|
2023-05-12 13:01:12 +02:00
|
|
|
change_column :comments, :comment, :text, default: ''
|
2009-01-06 11:49:19 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
2023-05-12 13:01:12 +02:00
|
|
|
change_column :comments, :comment, :string, default: ''
|
2009-01-06 11:49:19 +01:00
|
|
|
end
|
|
|
|
end
|