6 lines
128 B
Ruby
6 lines
128 B
Ruby
class AddCommentToPriceLines < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :price_lines, :comment, :text
|
|
end
|
|
end
|