summaryrefslogtreecommitdiff
path: root/db/migrate/20120119154422_fax_defaults.rb
blob: 76ccb47be2190eb5652c3bddccbdd5362246c983 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# ruby encoding: utf-8

class FaxDefaults < ActiveRecord::Migration
  def up
	################################################################
	# Fax resolutions
	################################################################
	FaxResolution.create(:name => 'Standard', :resolution_value => '204x98')
	FaxResolution.create(:name => 'Fine', :resolution_value => '204x196')
  end

  def down
    FaxResolution.destroy_all
  end
end