summaryrefslogtreecommitdiff
path: root/db/migrate/20111212201847_create_fax_pages.rb
blob: de8c708f3273c0ee736f184c02e013a5854aec1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CreateFaxPages < ActiveRecord::Migration
  def self.up
    create_table :fax_pages do |t|
      t.string :page
      t.integer :position
      t.timestamps
    end
  end

  def self.down
    drop_table :fax_pages
  end
end