Class: AddReportDownloadedAt

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
db/migrate/023_add_report_downloaded_at.rb

Class Method Summary collapse

Class Method Details

.downObject



6
7
8
# File 'db/migrate/023_add_report_downloaded_at.rb', line 6

def self.down
	remove_column :reports, :downloaded_at
end

.upObject



2
3
4
# File 'db/migrate/023_add_report_downloaded_at.rb', line 2

def self.up
	add_column :reports, :downloaded_at, :timestamp
end