cirandas.net

ref: master

db/migrate/20100823190348_create_contact_lists.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
class CreateContactLists < ActiveRecord::Migration
  def self.up
    create_table :contact_lists do |t|
      t.text :list
      t.string :error_fetching
      t.boolean :fetched, :default => false
      t.timestamps
    end
  end

  def self.down
    drop_table :contact_lists
  end
end