diff options
Diffstat (limited to 'db/migrate/20111219131952_create_fax_thumbnails.rb')
-rw-r--r-- | db/migrate/20111219131952_create_fax_thumbnails.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20111219131952_create_fax_thumbnails.rb b/db/migrate/20111219131952_create_fax_thumbnails.rb new file mode 100644 index 0000000..3474e0a --- /dev/null +++ b/db/migrate/20111219131952_create_fax_thumbnails.rb @@ -0,0 +1,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 |