blob: 6782021ba6840d3e05464aad299d39805ce55e35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class CreateFaxResolutions < ActiveRecord::Migration
def change
create_table :fax_resolutions do |t|
t.string :name
t.string :resolution_value
t.integer :position
t.timestamps
end
end
end
|