forked from bofh/fetsite
6 lines
136 B
Ruby
6 lines
136 B
Ruby
class AddCrawledAtToCrawlobjects < ActiveRecord::Migration
|
|
def change
|
|
add_column :crawlobjects, :crawled_at, :timestamp
|
|
end
|
|
end
|