6 lines
119 B
Ruby
6 lines
119 B
Ruby
class AddAttachmentToNote < ActiveRecord::Migration
|
|
def change
|
|
add_column :notes, :attachment, :string
|
|
end
|
|
end
|