cae5de9bdc
git-svn-id: file:///home/svn/framework3/trunk@9608 4d416f70-5f16-0410-b530-b9f4589650da
11 lines
189 B
Ruby
11 lines
189 B
Ruby
class AddReportDownloadedAt < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :reports, :downloaded_at, :timestamp
|
|
end
|
|
|
|
def self.down
|
|
remove_column :reports, :downloaded_at
|
|
end
|
|
end
|
|
|