canvas-lms/db/migrate/20130521223335_add_last_inl...

12 lines
236 B
Ruby

class AddLastInlineViewToAttachments < ActiveRecord::Migration
tag :predeploy
def self.up
add_column :attachments, :last_inline_view, :datetime
end
def self.down
remove_column :attachments, :last_inline_view
end
end