socialforge/db/migrate/20170207060207_change_attac...

9 lines
149 B
Ruby
Raw Normal View History

class ChangeAttachmentColumn < ActiveRecord::Migration
def up
change_column :attachments, :publish_time, :datetime
end
def down
end
end