6 lines
126 B
Ruby
6 lines
126 B
Ruby
|
class AddQutoesToAttachments < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column("attachments","quotes",:integer)
|
||
|
end
|
||
|
end
|