Class: CreateCrawlStationCaches

Inherits:
Object
  • Object
show all
Defined in:
lib/crawl_station/db/migrate/002_create_crawl_station_caches.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# 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