summaryrefslogtreecommitdiff
path: root/db/migrate/20120119154422_fax_defaults.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20120119154422_fax_defaults.rb')
-rw-r--r--db/migrate/20120119154422_fax_defaults.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/db/migrate/20120119154422_fax_defaults.rb b/db/migrate/20120119154422_fax_defaults.rb
new file mode 100644
index 0000000..76ccb47
--- /dev/null
+++ b/db/migrate/20120119154422_fax_defaults.rb
@@ -0,0 +1,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