6 lines
137 B
Ruby
6 lines
137 B
Ruby
|
|
class RemoveContextFromSitereports < ActiveRecord::Migration[8.1]
|
||
|
|
def change
|
||
|
|
remove_column :sitereports, :context, :text
|
||
|
|
end
|
||
|
|
end
|