6 lines
115 B
Ruby
6 lines
115 B
Ruby
|
|
class AddUrlToReports < ActiveRecord::Migration[8.0]
|
||
|
|
def change
|
||
|
|
add_column :reports, :url, :string
|
||
|
|
end
|
||
|
|
end
|