canvas-lms/db/migrate/20160105202518_add_viewed_a...

8 lines
149 B
Ruby

class AddViewedAtToAttachment < ActiveRecord::Migration
tag :predeploy
def change
add_column :attachments, :viewed_at, :timestamp
end
end