20091203190244_create_clicks.rb 278 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 class CreateClicks < ActiveRecord::Migration def self.up create_table :clicks do |table| table.integer :site_id table.integer :visitor_id table.text :additional_info table.timestamps end end def self.down drop_table :clicks end end