9 lines
259 B
Ruby
9 lines
259 B
Ruby
|
desc 'Remove duplicated bulletin_events (event_anns) created by preview'
|
||
|
|
||
|
namespace :bulletin_event do
|
||
|
task :remove_preview_bulletins => [:environment] do
|
||
|
bulletin_events = BulletinEvent.where(is_preview: true)
|
||
|
bulletin_events.destroy_all
|
||
|
end
|
||
|
end
|