6 lines
129 B
Ruby
6 lines
129 B
Ruby
|
|
class AddNewshitToSitereports < ActiveRecord::Migration[8.1]
|
||
|
|
def change
|
||
|
|
add_column :sitereports, :newshit, :text
|
||
|
|
end
|
||
|
|
end
|