CanbiZ (MickLesk)
ba87729be7
sparkyfitness: run the Better Auth migration during the update ( #17318 )
...
* sparkyfitness: run the Better Auth migration during the update
1.7.1 ships a Better Auth version whose schema has columns 1.6.5 never
created, and nothing in the update adds them. The backend starts, then
refuses every sign-in:
Database schema mismatch
Missing columns session.impersonated_by two_factor.verified ...
Run `npx auth migrate` to add the missing tables and columns.
Run exactly that after the backend dependencies are in place, with the
config Better Auth looks for, SparkyFitnessServer/auth.ts, and the
database credentials from /etc/sparkyfitness/.env. Users who hit this
were left running the server by hand to get the columns created.
A failure warns instead of aborting: the rest of the update has already
succeeded at that point, and the message names the remaining step.
* sparkyfitness: start the server through the entrypoint that migrates
The Better Auth CLI added in the previous commit is the wrong tool. It
generates sso_provider.user_id as text and cannot reference this
schema's uuid user.id:
foreign key constraint "sso_provider_user_id_fkey" cannot be
implemented [...] incompatible types: text and uuid
The real cause is one line up in the unit. It ran
tsx SparkyFitnessServer.js
which imports the application module directly and never applies the
schema migrations. Upstream starts through index.ts - nodemon.json has
exec: tsx index.ts - and that file runs applyMigrations() and
applyRlsPolicies() before importing anything, with a comment naming this
exact failure:
Better Auth validates the database schema eagerly, the moment
betterAuth() is constructed at auth.ts module scope [...] When
migrations ran later (from inside SparkyFitnessServer.ts) that check
read the pre-migration schema on the first boot after an upgrade, so
every /api/auth request failed until the container was restarted.
Point both the install and the update at index.ts and drop the CLI call.
index.ts exits non-zero when a migration fails, so systemd surfaces that
instead of serving a broken login.
2026-09-17 13:39:36 +02:00
..
2026-09-15 09:16:43 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-08-18 12:38:22 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-08-31 08:50:21 +02:00
2026-08-24 17:09:34 +02:00
2026-08-26 22:09:11 +10:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-08-24 17:11:26 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-01 13:36:02 +02:00
2026-09-02 11:40:00 +02:00
2026-09-11 20:12:18 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-08-31 13:40:34 +02:00
2026-09-02 11:40:00 +02:00
2026-09-04 17:52:31 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-04 17:52:31 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-03 15:45:59 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-08-31 09:41:09 +02:00
2026-09-02 11:40:00 +02:00
2026-09-14 15:50:54 +02:00
2026-08-25 16:09:04 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-08-18 12:38:22 +02:00
2026-09-12 08:31:29 +02:00
2026-09-01 13:28:55 +02:00
2026-08-26 22:09:19 +10:00
2026-09-02 11:40:00 +02:00
2026-09-11 07:39:20 +02:00
2026-08-31 08:50:21 +02:00
2026-09-07 16:57:57 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-10 15:10:59 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-03 15:45:59 +02:00
2026-08-25 11:04:15 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-01 13:28:55 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-04 17:52:31 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 21:14:48 +10:00
2026-09-03 15:45:59 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-08-25 11:04:15 +02:00
2026-09-02 21:14:48 +10:00
2026-09-08 11:20:32 +02:00
2026-08-30 20:53:34 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-08-26 13:42:52 +02:00
2026-08-31 08:48:43 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 21:14:48 +10:00
2026-09-16 13:12:43 +02:00
2026-08-23 03:21:42 +02:00
2026-09-02 21:14:48 +10:00
2026-09-16 11:59:00 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-08-31 08:50:21 +02:00
2026-08-28 14:32:00 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-12 22:11:22 +02:00
2026-09-02 21:14:48 +10:00
2026-08-31 08:50:21 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-08-31 08:50:21 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-08-26 22:07:45 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-08-31 08:50:21 +02:00
2026-09-03 15:45:59 +02:00
2026-09-02 11:40:00 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-01 13:28:55 +02:00
2026-09-07 16:37:07 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-08-23 03:21:42 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 21:14:48 +10:00
2026-09-16 12:01:52 +02:00
2026-09-02 21:14:48 +10:00
2026-08-18 12:38:22 +02:00
2026-08-31 09:40:55 +02:00
2026-08-26 13:42:13 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-08-18 12:38:22 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-03 15:45:59 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-12 11:52:55 +02:00
2026-09-02 21:14:48 +10:00
2026-08-18 12:38:22 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-12 14:24:00 +02:00
2026-08-26 08:48:51 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 21:14:48 +10:00
2026-09-07 12:52:27 +02:00
2026-09-10 06:28:10 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-01 13:28:55 +02:00
2026-09-01 13:28:55 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-01 13:28:55 +02:00
2026-09-11 07:41:21 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-08-31 08:50:21 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-16 16:00:31 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-01 13:28:55 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-13 20:07:45 +02:00
2026-08-23 03:21:42 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-01 13:28:55 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 16:31:59 +02:00
2026-09-08 10:28:42 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-12 14:25:09 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-07 16:51:29 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-07 14:04:26 +02:00
2026-09-02 21:14:48 +10:00
2026-08-31 16:30:11 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-08-31 13:38:45 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-03 15:45:59 +02:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-02 21:14:48 +10:00
2026-09-11 23:40:58 +02:00
2026-09-04 17:52:31 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 13:18:14 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 13:18:14 +02:00
2026-09-09 15:25:01 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-03 15:45:59 +02:00
2026-09-10 15:02:09 +02:00
2026-08-18 12:38:22 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-01 22:25:05 +02:00
2026-08-31 13:38:45 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-08-18 12:38:22 +02:00
2026-08-28 21:09:57 +10:00
2026-09-02 13:18:14 +02:00
2026-09-07 16:53:13 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 11:59:56 +02:00
2026-09-02 13:18:14 +02:00
2026-09-07 12:51:42 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-01 13:28:55 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-08-25 11:04:15 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-16 12:01:42 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-01 13:28:55 +02:00
2026-09-07 12:52:48 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 13:18:14 +02:00
2026-09-03 15:45:59 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-08-25 11:04:15 +02:00
2026-09-02 13:18:14 +02:00
2026-08-31 08:49:03 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-01 13:28:55 +02:00
2026-08-18 12:38:22 +02:00
2026-08-31 08:49:57 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-01 13:28:55 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-08-25 11:04:15 +02:00
2026-09-01 13:28:55 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 11:40:00 +02:00
2026-09-07 12:51:24 +02:00
2026-08-31 18:37:10 +02:00
2026-09-02 13:18:14 +02:00
2026-09-11 07:43:35 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-08-30 20:53:12 +02:00
2026-09-02 13:18:14 +02:00
2026-08-26 13:42:32 +02:00
2026-08-31 08:49:37 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-08-26 13:41:49 +02:00
2026-09-02 13:18:14 +02:00
2026-08-31 18:36:40 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 16:33:10 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-04 17:52:31 +02:00
2026-09-11 07:42:37 +02:00
2026-09-02 13:18:14 +02:00
2026-09-03 15:45:59 +02:00
2026-09-12 22:10:47 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-11 07:43:04 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 16:32:44 +02:00
2026-09-01 13:28:55 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 13:18:14 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 13:18:14 +02:00
2026-08-25 11:04:15 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 13:18:14 +02:00
2026-08-31 13:38:45 +02:00
2026-09-02 13:18:14 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-08-28 21:10:20 +10:00
2026-09-10 15:02:18 +02:00
2026-08-18 12:38:22 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-17 10:27:19 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-08-18 12:38:22 +02:00
2026-09-02 13:18:14 +02:00
2026-09-01 13:28:55 +02:00
2026-08-25 11:04:15 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 11:40:00 +02:00
2026-08-28 11:19:40 +10:00
2026-08-25 15:11:31 +02:00
2026-08-25 11:04:15 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-02 13:18:14 +02:00
2026-09-01 13:28:55 +02:00
2026-09-02 13:18:14 +02:00
2026-08-18 12:38:22 +02:00
2026-09-02 13:18:14 +02:00
2026-09-07 12:52:04 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 16:31:34 +02:00
2026-09-02 21:37:36 +10:00
2026-08-18 12:38:22 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-24 17:07:31 +02:00
2026-09-05 13:02:40 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-18 12:38:22 +02:00
2026-08-18 12:38:22 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 11:40:00 +02:00
2026-09-10 13:49:15 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 11:40:00 +02:00
2026-09-02 21:37:36 +10:00
2026-08-27 09:56:12 +02:00
2026-09-01 13:28:55 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-01 13:28:55 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-31 08:50:21 +02:00
2026-09-02 21:37:36 +10:00
2026-09-04 22:55:11 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-05 13:04:53 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-30 20:55:03 +02:00
2026-09-10 10:33:16 +02:00
2026-09-06 23:00:47 +02:00
2026-09-01 13:28:55 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-17 13:39:36 +02:00
2026-09-02 21:37:36 +10:00
2026-09-14 10:08:27 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-31 08:50:21 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 11:40:00 +02:00
2026-09-08 11:18:20 +02:00
2026-09-02 21:37:36 +10:00
2026-09-01 13:28:55 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-30 20:54:10 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-23 03:21:42 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-31 08:50:21 +02:00
2026-09-02 21:37:36 +10:00
2026-08-18 12:38:22 +02:00
2026-08-25 11:04:15 +02:00
2026-09-02 16:31:00 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 11:40:00 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-31 08:50:21 +02:00
2026-09-02 21:37:36 +10:00
2026-08-18 12:38:22 +02:00
2026-09-05 13:03:57 +10:00
2026-09-16 11:59:19 +02:00
2026-09-02 21:37:36 +10:00
2026-09-15 08:47:51 +02:00
2026-09-02 21:37:36 +10:00
2026-08-18 12:38:22 +02:00
2026-08-23 03:21:42 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-31 08:50:21 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-25 11:04:15 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-25 11:04:15 +02:00
2026-08-31 08:50:21 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-25 11:04:15 +02:00
2026-09-02 21:37:36 +10:00
2026-09-15 09:16:43 +02:00
2026-08-18 12:38:22 +02:00
2026-08-31 16:30:47 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 11:40:00 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-03 15:45:59 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-03 15:45:59 +02:00
2026-09-02 11:40:00 +02:00
2026-09-02 21:37:36 +10:00
2026-09-01 13:28:55 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-07 16:57:48 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-18 12:38:22 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-01 13:28:55 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-03 15:45:59 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-31 16:30:11 +02:00
2026-09-01 13:28:55 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-08-23 03:21:42 +02:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00
2026-09-02 21:37:36 +10:00