pay_subject
parent
906c1d744f
commit
218611ee7f
@ -1,5 +0,0 @@
|
||||
class AddDeleteToTiding < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_column :tidings, :delete, :boolean, default: 0
|
||||
end
|
||||
end
|
@ -0,0 +1,5 @@
|
||||
class AddIsDeleteToTiding < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_column :tidings, :is_delete, :boolean, default: 0
|
||||
end
|
||||
end
|
@ -1,5 +1,5 @@
|
||||
class UpdateTidingDeleteStatus < ActiveRecord::Migration[5.2]
|
||||
class UpdateTidingsDeleteStatus < 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)
|
||||
Tiding.where.not(container_type: 'DeleteCourse').where(belong_container_type: "Course", belong_container_id: Course.where(is_delete: 1).pluck(:id)).update_all(is_delete: 1)
|
||||
end
|
||||
end
|
Loading…
Reference in new issue