mirror of
https://github.com/foomo/shop.git
synced 2026-05-30 23:50:03 +00:00
17 lines
588 B
JavaScript
17 lines
588 B
JavaScript
// db.orders.createCollection("orders")
|
|
// db.customers.createCollection("customers")
|
|
// db.credentials.createCollection("credentials")
|
|
// db.customers_history.createCollection("customers_history")
|
|
// db.orders_history.createCollection("orders_history")
|
|
// db.status_updates.createCollection("status_updates")
|
|
// db.payment_jobs.createCollection("payment_jobs")
|
|
// db.tlog_jobs.createCollection("tlog_jobs")
|
|
|
|
db.orders.drop()
|
|
db.customers.drop()
|
|
db.credentials.drop()
|
|
db.customers_history.drop()
|
|
db.orders_history.drop()
|
|
db.status_updates.drop()
|
|
db.payment_jobs.drop()
|
|
db.tlog_jobs.drop() |