mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
11 lines
373 B
Ruby
11 lines
373 B
Ruby
|
module ActiveRecord
|
||
|
module Tasks
|
||
|
class PostgreSQLDatabaseTasks
|
||
|
def drop
|
||
|
establish_master_connection
|
||
|
connection.select_all "select pg_terminate_backend(pg_stat_activity.pid) from pg_stat_activity where datname='#{configuration['database']}' AND state='idle';"
|
||
|
connection.drop_database configuration['database']
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|