fix logic and tests, update docker CI file

This commit is contained in:
root
2026-03-09 15:58:44 -04:00
parent 1cb3573d4b
commit 79e44fe037
188 changed files with 1776 additions and 524 deletions
@@ -11,7 +11,10 @@ return new class extends Migration
App\Support\SqliteCompat::statement(<<<'SQL'
CREATE TABLE `event_charges` (
`id` int UNSIGNED NOT NULL,
`event_id` int UNSIGNED NOT NULL,
`event_id` int UNSIGNED DEFAULT NULL,
`event_name` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
`description` text COLLATE utf8mb4_general_ci,
`amount` decimal(10,2) DEFAULT NULL,
`parent_id` int UNSIGNED DEFAULT NULL,
`student_id` int UNSIGNED DEFAULT NULL,
`participation` enum('yes','no') COLLATE utf8mb4_general_ci DEFAULT NULL,
@@ -43,4 +46,4 @@ SQL
{
Schema::dropIfExists('event_charges');
}
};
};