Organize scattered PHP files into scripts/ and tests/ directories

This commit is contained in:
2025-11-12 08:34:20 +01:00
parent 0622f40004
commit 8f072292c1
28 changed files with 10 additions and 10 deletions

1
scripts/add_col.php Executable file
View File

@@ -0,0 +1 @@
<?php $db = new PDO("sqlite:collections.sqlite"); $db->exec("ALTER TABLE items ADD COLUMN id_code TEXT"); echo "done";