9 lines
149 B
Ruby
9 lines
149 B
Ruby
|
class ChangeAttachmentColumn < ActiveRecord::Migration
|
||
|
def up
|
||
|
change_column :attachments, :publish_time, :datetime
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
end
|
||
|
end
|