Files
raid-callouts/src/sql/initial-table.sql
Gabriella 3032210a85
All checks were successful
test and deploy / test (3.11.5) (push) Successful in 1m23s
test and deploy / push-and-build (push) Successful in 59s
Test Helper Module / test (3.11.5) (push) Successful in 1m28s
Add the rest
2025-10-16 14:04:02 -06:00

7 lines
159 B
SQL

create table absent_players (
user_id int NOT NULL,
user_name varchar(20) NOT NULL,
date_ab date NOT NULL,
reason_ab varchar(200),
has_passed int DEFAULT 0);
/