Add reports.downloaded_at db column.

git-svn-id: file:///home/svn/framework3/trunk@9608 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Mike Smith 2010-06-24 16:13:46 +00:00
parent 6280c51382
commit cae5de9bdc
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
class AddReportDownloadedAt < ActiveRecord::Migration
def self.up
add_column :reports, :downloaded_at, :timestamp
end
def self.down
remove_column :reports, :downloaded_at
end
end