Goal-Calibration/data/wipeDb.php

16 lines
301 B
PHP

<?php
$files = [
'texts.json',
'nodes.json',
'users.json',
'plans.json',
'scheduledNodes.json',
'sessions.json',
];
foreach ($files as $file) {
echo __DIR__ . "/$file\n";
$path = __DIR__ . "/$file";
file_put_contents($path, json_encode([], JSON_PRETTY_PRINT));
}