Added note to deliveries. Closes #34
This commit is contained in:
parent
5e1fc73c29
commit
16346e3529
5 changed files with 26 additions and 5 deletions
9
db/migrate/20090812110010_add_note_to_deliveries.rb
Normal file
9
db/migrate/20090812110010_add_note_to_deliveries.rb
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
class AddNoteToDeliveries < ActiveRecord::Migration
|
||||
def self.up
|
||||
add_column :deliveries, :note, :text
|
||||
end
|
||||
|
||||
def self.down
|
||||
remove_column :deliveries, :note
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue