parent
4d2f30f39e
commit
da368ae908
@ -0,0 +1,5 @@
|
||||
class AddDeleteToTiding < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_column :tidings, :delete, :boolean, default: 0
|
||||
end
|
||||
end
|
@ -0,0 +1,5 @@
|
||||
class UpdateTidingDeleteStatus < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
Tiding.where.not(container_type: 'DeleteCourse').where(belong_container_type: "Course", belong_container_id: Course.where(is_delete: 1).pluck(:id)).update_all(delete: 1)
|
||||
end
|
||||
end
|
Loading…
Reference in new issue