summaryrefslogtreecommitdiff
path: root/db/migrate/20111219131952_create_fax_thumbnails.rb
blob: 3474e0aff7922ff7f86feb54787b54e7ba605a76 (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateFaxThumbnails < ActiveRecord::Migration
  def change
    create_table :fax_thumbnails do |t|
      t.integer :fax_document_id
      t.integer :position
      t.string :thumbnail

      t.timestamps
    end
  end
end