diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2012-12-17 12:05:14 +0100 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2012-12-17 12:05:14 +0100 |
commit | eaad37485fe59d0306c37cc038dda6d210052910 (patch) | |
tree | 072c4b0e33d442528555b82c415f5e7a1712b2b0 /db/migrate/20120119154422_fax_defaults.rb | |
parent | 3e706c2025ecc5523e81ad649639ef2ff75e7bac (diff) | |
parent | b80bd744ad873f6fc43018bc4bfb90677de167bd (diff) |
Merge branch 'develop'
Diffstat (limited to 'db/migrate/20120119154422_fax_defaults.rb')
-rw-r--r-- | db/migrate/20120119154422_fax_defaults.rb | 15 |
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 |