class CreateCrawlStationCaches

Public Instance Methods

change() click to toggle source
# File lib/crawl_station/db/migrate/002_create_crawl_station_caches.rb, line 2
def change
  create_table :crawl_station_caches do |t|
    t.string :key, index: true
    t.string :value
    t.timestamp :triggered_time
    t.timestamps null: false
  end
end