forked from e621ng/e621ng
9 lines
226 B
Ruby
Executable File
9 lines
226 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'config', 'environment'))
|
|
|
|
Ticket.without_timeout do
|
|
Ticket.where(qtype: "namechange").delete_all
|
|
end
|