8 lines
149 B
Ruby
8 lines
149 B
Ruby
|
class AddViewedAtToAttachment < ActiveRecord::Migration
|
||
|
tag :predeploy
|
||
|
|
||
|
def change
|
||
|
add_column :attachments, :viewed_at, :timestamp
|
||
|
end
|
||
|
end
|