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-07-28 19:47:13 +02:00
2026-08-05 00:26:46 +02:00
2026-08-18 12:38:22 +02:00
2026-08-15 13:36:49 +10:00
2026-08-04 16:54:46 +02:00
2026-06-19 09:53:08 +02:00
2026-08-24 17:09:34 +02:00
2026-08-26 22:09:11 +10:00
2026-03-23 15:31:35 +01:00
2026-06-12 09:27:45 +02:00
2026-06-11 21:07:38 +02:00
2026-06-19 09:53:08 +02:00
2026-06-19 09:53:08 +02:00
2026-08-14 15:21:26 +02:00
2026-04-21 15:21:29 +02:00
2026-07-22 08:18:12 +02:00
2026-06-20 19:46:09 +10:00
2026-04-15 12:52:45 +02:00
2026-08-09 20:08:41 +02:00
2026-06-30 13:01:18 +02:00
2026-08-25 11:23:25 +02:00
2026-06-19 09:53:08 +02:00
2026-06-21 02:56:49 +10:00
2026-06-21 02:56:49 +10:00
2026-08-24 17:11:26 +02:00
2026-06-19 09:53:08 +02:00
2026-02-24 15:11:53 +01:00
2026-09-01 13:36:02 +02:00
2026-02-24 15:11:53 +01:00
2026-09-11 20:12:18 +02:00
2026-06-30 13:01:18 +02:00
2026-06-19 09:53:08 +02:00
2026-07-28 19:47:13 +02:00
2026-06-19 09:53:08 +02:00
2026-08-20 14:27:41 +02:00
2026-08-31 13:40:34 +02:00
2026-08-21 21:27:24 +02:00
2026-09-04 17:52:31 +02:00
2026-08-01 21:19:28 +02:00
2026-07-16 18:01:44 +10:00
2026-09-04 17:52:31 +02:00
2026-06-19 09:53:08 +02:00
2026-07-29 17:58:04 +02:00
2026-07-14 21:58:22 +10:00
2026-08-02 19:32:33 +02:00
2026-09-03 15:45:59 +02:00
2026-06-19 09:53:08 +02:00
2026-08-31 09:41:09 +02:00
2026-04-09 16:44:11 +02:00
2026-09-15 20:25:11 +02:00
2026-08-25 16:09:04 +02:00
2026-08-09 18:50:05 +02:00
2026-08-18 12:38:22 +02:00
2026-09-12 08:31:29 +02:00
2026-08-26 22:09:19 +10:00
2026-06-19 09:53:08 +02:00
2026-09-11 07:39:20 +02:00
2026-03-18 11:56:32 +01:00
2026-09-07 16:57:57 +02:00
2026-07-28 19:47:13 +02:00
2026-06-30 13:01:18 +02:00
2026-09-10 15:10:59 +02:00
2026-08-01 21:19:08 +02:00
2026-06-11 20:05:39 +02:00
2026-06-19 09:53:08 +02:00
2026-09-03 15:45:59 +02:00
2026-01-29 17:15:10 +01:00
2026-06-19 09:53:08 +02:00
2026-07-23 23:18:28 +02:00
2026-02-09 15:54:22 +01:00
2026-04-15 12:52:45 +02:00
2026-06-19 09:53:08 +02:00
2026-08-12 13:47:27 +02:00
2026-07-27 20:41:01 +10:00
2026-04-28 08:41:36 +02:00
2026-06-19 09:53:08 +02:00
2026-06-30 13:01:18 +02:00
2026-02-24 15:11:53 +01:00
2026-08-02 09:11:59 +02:00
2026-09-04 17:52:31 +02:00
2026-06-05 13:55:33 +02:00
2026-06-19 09:53:08 +02:00
2026-05-17 20:32:12 +02:00
2026-09-03 15:45:59 +02:00
2026-07-28 19:47:13 +02:00
2026-03-05 15:58:47 +01:00
2026-06-19 09:53:08 +02:00
2026-06-19 09:53:08 +02:00
2026-09-08 11:20:32 +02:00
2026-08-30 20:53:34 +02:00
2026-06-22 20:13:27 +02:00
2026-06-27 21:07:03 +02:00
2026-08-26 13:42:52 +02:00
2026-08-31 08:48:43 +02:00
2026-06-19 09:53:08 +02:00
2026-07-28 19:47:13 +02:00
2026-09-12 14:30:42 +02:00
2026-08-18 12:38:22 +02:00
2026-09-16 11:59:00 +02:00
2026-07-27 10:32:20 +02:00
2026-08-22 06:30:08 +02:00
2026-06-30 13:01:18 +02:00
2026-04-21 10:38:16 +02:00
2026-01-30 13:05:05 +01:00
2026-06-19 09:53:08 +02:00
2026-06-30 13:01:18 +02:00
2026-04-01 22:08:18 +02:00
2026-02-24 15:11:53 +01:00
2026-08-28 14:32:00 +02:00
2026-06-30 13:01:18 +02:00
2026-06-19 09:53:08 +02:00
2026-06-19 09:53:08 +02:00
2026-09-12 22:11:22 +02:00
2026-07-04 21:49:09 +02:00
2026-03-19 06:55:56 +01:00
2026-06-19 09:53:08 +02:00
2026-07-04 11:55:36 +02:00
2026-06-30 14:28:40 +02:00
2026-08-10 12:02:24 +02:00
2026-07-28 19:47:13 +02:00
2026-07-17 11:59:05 +02:00
2026-06-29 22:30:31 +02:00
2026-07-28 19:47:13 +02:00
2026-05-16 13:33:11 +10:00
2026-06-19 09:53:08 +02:00
2026-08-26 22:07:45 +10:00
2026-07-28 19:47:13 +02:00
2026-09-05 13:03:40 +10:00
2026-09-03 15:45:59 +02:00
2026-06-01 15:58:32 +02:00
2026-07-10 10:53:51 +02:00
2026-06-29 09:59:43 +02:00
2026-04-08 10:38:53 +02:00
2026-09-07 16:37:07 +02:00
2026-08-14 16:03:28 +02:00
2026-03-05 22:30:20 +01:00
2026-06-30 19:44:42 +10:00
2026-06-21 22:24:10 +02:00
2026-08-18 12:38:22 +02:00
2026-07-07 22:45:52 +02:00
2026-01-30 13:05:05 +01:00
2026-09-16 12:01:52 +02:00
2026-05-19 08:24:28 +02: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-07-28 19:47:13 +02:00
2026-06-30 13:01:18 +02:00
2026-08-28 21:09:33 +10:00
2026-03-04 12:04:45 +01:00
2026-06-20 00:34:00 +02:00
2026-08-10 09:11:15 +02:00
2026-06-20 00:34:00 +02:00
2026-06-08 22:28:40 +02:00
2026-06-30 13:01:18 +02:00
2026-09-03 15:45:59 +02:00
2026-06-20 00:34:00 +02:00
2026-08-14 16:07:15 +02:00
2026-06-20 00:34:00 +02:00
2026-06-20 00:34:00 +02:00
2026-09-12 11:52:55 +02:00
2026-07-20 11:55:01 +02:00
2026-08-18 12:38:22 +02:00
2026-06-21 22:24:10 +02:00
2026-07-28 19:47:13 +02:00
2026-06-30 13:01:18 +02:00
2026-05-29 08:29:33 +02:00
2026-03-07 22:14:29 +01:00
2026-09-12 14:24:00 +02:00
2026-08-26 08:48:51 +02:00
2026-06-30 13:01:18 +02:00
2026-08-05 00:26:12 +02:00
2026-05-28 07:04:54 +02:00
2026-06-20 00:34:00 +02:00
2026-08-04 23:02:28 +02:00
2026-04-15 12:52:45 +02:00
2026-07-05 22:28:00 +02:00
2026-08-02 19:57:57 +02:00
2026-06-20 00:34:00 +02:00
2026-05-16 23:32:05 +02:00
2026-09-11 07:41:21 +02:00
2026-06-20 00:34:00 +02:00
2026-08-07 19:45:32 +02:00
2026-07-13 11:12:10 +02:00
2026-08-08 12:37:57 +10:00
2026-06-21 02:56:49 +10:00
2026-09-16 16:00:31 +02:00
2026-08-21 10:37:12 +02:00
2026-06-21 02:56:49 +10:00
2026-05-10 09:43:33 +02:00
2026-07-26 18:34:05 +02:00
2026-07-28 19:47:13 +02:00
2026-07-17 14:30:55 +02:00
2026-07-28 19:47:13 +02:00
2026-07-28 19:47:13 +02:00
2026-09-13 20:07:45 +02:00
2026-08-18 12:38:22 +02:00
2026-06-21 02:56:49 +10:00
2026-03-15 20:08:39 +01:00
2026-09-05 22:41:32 +02:00
2026-06-21 02:56:49 +10:00
2026-09-02 16:31:59 +02:00
2026-09-08 10:28:42 +02:00
2026-09-12 14:25:09 +02:00
2026-02-25 11:27:47 +01:00
2026-05-09 08:02:03 +02:00
2026-09-07 16:51:29 +02:00
2026-02-09 15:54:22 +01:00
2026-06-01 16:00:00 +02:00
2026-09-07 14:04:26 +02:00
2026-02-09 15:54:22 +01:00
2026-08-11 07:39:01 +02:00
2026-06-21 02:56:49 +10:00
2026-06-21 02:56:49 +10:00
2026-08-17 11:26:13 +02:00
2026-08-31 13:38:45 +02:00
2026-06-30 13:01:18 +02:00
2026-07-28 19:47:13 +02:00
2026-06-16 13:26:24 +02:00
2026-07-28 19:47:13 +02:00
2026-09-03 15:45:59 +02:00
2026-08-13 09:53:37 +02:00
2026-08-17 11:22:53 +02:00
2026-06-21 00:21:58 +02:00
2026-06-21 00:21:58 +02:00
2026-01-31 00:10:38 +01:00
2026-06-21 00:21:58 +02:00
2026-07-13 17:39:10 +02:00
2026-02-24 15:11:53 +01:00
2026-09-11 23:40:58 +02:00
2026-09-04 17:52:31 +02:00
2026-08-02 19:33:09 +02:00
2026-06-21 00:21:58 +02:00
2026-02-11 11:52:20 +01:00
2026-06-21 00:21:58 +02:00
2026-08-26 21:27:12 +02:00
2026-09-09 15:25:01 +02:00
2026-07-28 19:47:13 +02:00
2026-02-24 15:11:53 +01:00
2026-06-21 22:24:10 +02:00
2026-06-30 13:01:18 +02:00
2026-06-30 13:01:18 +02:00
2026-05-19 08:50:45 +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-02-24 15:11:53 +01:00
2026-07-28 19:47:13 +02:00
2026-06-21 00:21:58 +02:00
2026-02-24 15:11:53 +01:00
2026-02-24 15:11:53 +01:00
2026-06-21 00:21:58 +02:00
2026-09-01 22:25:05 +02:00
2026-08-31 13:38:45 +02:00
2026-06-30 13:01:18 +02:00
2026-07-28 19:47:13 +02:00
2026-08-18 12:38:22 +02:00
2026-08-28 21:09:57 +10:00
2026-07-28 19:47:13 +02:00
2026-09-07 16:53:13 +02:00
2026-06-21 00:21:58 +02:00
2026-02-24 11:38:15 +01:00
2026-06-05 14:00:55 +02:00
2026-06-30 13:01:18 +02:00
2026-09-02 11:59:56 +02:00
2026-06-30 13:01:18 +02:00
2026-06-21 20:42:17 +02:00
2026-07-30 10:51:00 +02:00
2026-02-24 15:11:53 +01:00
2026-06-21 20:42:17 +02:00
2026-02-24 15:11:53 +01:00
2026-06-21 22:24:10 +02:00
2026-04-22 07:43:20 +02:00
2026-06-30 13:01:18 +02:00
2026-06-21 20:42:17 +02:00
2026-06-21 20:42:17 +02:00
2026-03-25 17:48:03 +01:00
2026-04-05 21:04:08 +02:00
2026-05-24 12:27:38 +02:00
2026-08-14 16:07:03 +02:00
2026-04-20 13:22:44 +02:00
2026-07-27 12:52:07 +02:00
2026-07-17 12:52:57 +02:00
2026-05-02 19:00:19 +02:00
2026-07-22 08:18:01 +02:00
2026-06-07 22:56:12 +02:00
2026-09-03 15:45:59 +02:00
2026-04-15 12:52:45 +02:00
2026-03-05 15:58:10 +01:00
2026-09-07 12:52:48 +02:00
2026-08-24 13:51:03 +02:00
2026-09-03 15:45:59 +02:00
2026-08-14 15:57:31 +02:00
2026-08-05 17:35:32 +02:00
2026-07-15 20:55:10 +10:00
2026-03-24 11:49:03 +01:00
2026-06-21 20:42:17 +02:00
2026-07-27 09:53:27 +02:00
2026-06-21 20:42:17 +02:00
2026-06-29 22:44:21 +02:00
2026-06-30 13:01:18 +02:00
2026-08-31 08:49:03 +02:00
2026-06-30 13:01:18 +02:00
2026-04-23 15:50:26 +02:00
2026-07-16 18:01:24 +10:00
2026-06-21 20:45:41 +02:00
2026-08-18 12:38:22 +02:00
2026-08-31 08:49:57 +02:00
2026-06-21 20:45:41 +02:00
2026-03-08 13:25:24 +01:00
2026-06-21 20:45:41 +02:00
2026-08-04 16:55:37 +02:00
2026-08-18 23:55:34 +10:00
2026-06-21 20:45:41 +02:00
2026-09-08 16:44:04 +02:00
2026-06-21 20:45:41 +02:00
2026-08-04 20:51:02 +02:00
2026-09-07 12:51:24 +02:00
2026-08-31 18:37:10 +02:00
2026-09-11 07:43:35 +02:00
2026-06-30 13:01:18 +02:00
2026-06-11 16:20:57 +02:00
2026-08-30 20:53:12 +02:00
2026-08-04 16:54:31 +02:00
2026-08-26 13:42:32 +02:00
2026-06-21 20:45:41 +02:00
2026-06-21 20:45:41 +02:00
2026-02-25 08:22:48 +01:00
2026-08-26 13:41:49 +02:00
2026-07-27 10:57:45 +02:00
2026-08-31 18:36:40 +02:00
2026-08-21 08:08:33 +02:00
2026-08-07 19:41:33 +02:00
2026-07-28 19:47:13 +02:00
2026-08-11 21:49:05 +02:00
2026-06-21 20:45:41 +02:00
2026-08-17 11:23:12 +02:00
2026-09-02 16:33:10 +02:00
2026-07-28 13:36:40 +02:00
2026-02-24 15:11:53 +01:00
2026-09-04 17:52:31 +02:00
2026-09-11 07:42:37 +02:00
2026-09-03 15:45:59 +02:00
2026-09-12 22:10:47 +02:00
2026-05-19 08:24:28 +02:00
2026-06-30 13:01:18 +02:00
2026-08-04 12:13:49 +02:00
2026-08-04 20:50:40 +02:00
2026-08-17 11:27:25 +02:00
2026-07-28 19:47:13 +02:00
2026-05-03 22:38:30 +02:00
2026-09-02 16:32:44 +02:00
2026-07-30 10:06:57 +02:00
2026-08-14 22:09:22 +02:00
2026-06-21 20:44:06 +02:00
2026-06-21 20:44:06 +02:00
2026-06-21 20:44:06 +02:00
2026-07-09 11:28:40 +10:00
2026-06-25 14:06:24 +02:00
2026-07-28 19:47:13 +02:00
2026-08-31 13:38:45 +02:00
2026-02-24 15:11:53 +01:00
2026-03-19 06:55:56 +01:00
2026-06-21 20:44:06 +02:00
2026-07-10 20:47:58 +02:00
2026-03-18 18:52:07 +01: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-07-28 19:47:13 +02:00
2026-08-14 22:12:12 +02:00
2026-09-17 10:27:19 +02:00
2026-07-28 19:47:13 +02:00
2026-05-22 08:51:43 +02:00
2026-08-14 22:11:45 +02:00
2026-06-21 20:44:06 +02:00
2026-06-21 20:44:06 +02:00
2026-08-18 12:38:22 +02:00
2026-02-09 15:54:22 +01:00
2026-05-02 23:44:36 +02:00
2026-06-21 20:44:06 +02:00
2026-06-21 20:44:06 +02:00
2026-07-28 13:36:40 +02:00
2026-06-30 13:01:18 +02:00
2026-06-21 20:44:06 +02:00
2026-06-21 20:44:06 +02:00
2026-02-25 11:27:47 +01:00
2026-08-28 11:19:40 +10:00
2026-08-25 15:11:31 +02:00
2026-06-21 20:44:06 +02:00
2026-06-21 23:11:47 +02:00
2026-06-21 23:11:47 +02:00
2026-07-28 19:47:13 +02:00
2026-06-21 23:11:47 +02:00
2026-06-30 13:01:18 +02:00
2026-08-18 12:38:22 +02:00
2026-03-07 19:21:04 +01:00
2026-08-11 21:39:56 +02:00
2026-06-21 23:11:47 +02:00
2026-06-21 23:11:47 +02:00
2026-09-02 16:31:34 +02:00
2026-06-21 23:11:47 +02:00
2026-08-18 12:38:22 +02:00
2026-08-13 21:41:17 +02:00
2026-03-27 11:14:06 +01:00
2026-08-24 17:07:31 +02:00
2026-09-05 13:02:40 +10:00
2026-08-14 22:12:35 +02:00
2026-08-18 12:38:22 +02:00
2026-08-18 12:38:22 +02:00
2026-06-21 23:11:47 +02:00
2026-09-10 13:49:15 +02:00
2026-08-04 20:49:50 +02:00
2026-07-26 19:04:53 +02:00
2026-08-20 14:28:22 +02:00
2026-02-09 15:54:22 +01:00
2026-08-27 09:56:12 +02:00
2026-05-16 00:44:47 +02:00
2026-06-21 23:11:47 +02:00
2026-08-15 23:41:31 +02:00
2026-09-03 15:45:59 +02:00
2026-03-16 11:36:12 +01:00
2026-06-21 23:11:47 +02:00
2026-07-17 14:29:59 +02:00
2026-08-16 20:43:14 +02:00
2026-07-13 11:11:08 +02:00
2026-07-27 10:03:11 +02:00
2026-07-28 19:47:13 +02:00
2026-08-09 18:49:26 +02:00
2026-07-14 22:00:17 +10:00
2026-06-21 23:11:47 +02:00
2026-09-05 13:04:53 +10:00
2026-07-28 19:47:13 +02:00
2026-05-21 23:07:16 +02:00
2026-08-30 20:55:03 +02:00
2026-07-28 19:47:13 +02:00
2026-05-19 23:42:26 +02:00
2026-06-22 11:41:14 +02:00
2026-02-23 19:21:26 +01:00
2026-06-02 09:05:25 +02:00
2026-09-17 13:39:36 +02:00
2026-07-28 19:47:13 +02:00
2026-09-14 10:08:27 +02:00
2026-03-18 08:43:40 +01:00
2026-06-30 13:01:18 +02:00
2026-06-22 11:41:14 +02:00
2026-02-05 15:31:45 +01:00
2026-02-05 15:31:45 +01:00
2026-07-10 10:57:27 +02:00
2026-08-12 13:45:10 +02:00
2026-09-08 11:18:20 +02:00
2026-06-22 11:41:14 +02:00
2026-08-27 16:11:30 +02:00
2026-04-28 09:18:27 +02:00
2026-08-20 14:32:23 +02:00
2026-02-27 13:54:45 +01:00
2026-04-15 12:52:45 +02:00
2026-06-22 11:41:14 +02:00
2026-08-13 08:58:35 +02:00
2026-08-30 20:54:10 +02:00
2026-05-29 23:49:34 +02:00
2026-07-28 13:36:40 +02:00
2026-08-18 12:38:22 +02:00
2026-03-28 15:18:10 +01:00
2026-03-23 22:22:23 +01:00
2026-05-17 14:01:56 +02:00
2026-02-24 15:11:53 +01:00
2026-08-21 07:24:22 +02:00
2026-05-01 22:44:29 +02:00
2026-08-18 12:38:22 +02:00
2026-04-26 21:04:28 +02:00
2026-03-20 09:06:25 +01:00
2026-08-05 00:01:02 +02:00
2026-08-17 11:26:34 +02:00
2026-05-22 23:04:04 +10:00
2026-06-22 13:27:16 +02:00
2026-03-05 15:56:02 +01: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-06-22 13:27:16 +02:00
2026-09-15 08:47:51 +02:00
2026-08-16 20:28:36 +02:00
2026-08-18 12:38:22 +02:00
2026-08-18 12:38:22 +02:00
2026-06-22 13:27:16 +02:00
2026-07-19 14:02:56 +02:00
2026-06-22 13:27:16 +02:00
2026-02-09 15:54:22 +01:00
2026-08-20 14:32:09 +02:00
2026-02-24 15:11:53 +01:00
2026-06-22 13:27:16 +02:00
2026-06-21 22:24:10 +02:00
2026-06-30 13:01:18 +02:00
2026-06-22 13:27:16 +02:00
2026-02-24 15:11:53 +01:00
2026-08-20 14:27:23 +02:00
2026-07-28 18:11:29 +10:00
2026-06-22 13:27:16 +02:00
2026-06-22 13:27:16 +02:00
2026-07-27 12:50:46 +02:00
2026-06-22 13:27:16 +02:00
2026-06-22 13:27:16 +02:00
2026-02-24 15:11:53 +01: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-04-15 12:52:45 +02:00
2026-03-22 09:40:31 +01:00
2026-08-19 21:41:41 +02:00
2026-08-06 14:26:40 +02:00
2026-07-28 19:47:13 +02:00
2026-08-22 00:39:29 +02:00
2026-09-03 15:45:59 +02:00
2026-07-28 19:47:13 +02:00
2026-06-22 21:13:32 +02:00
2026-09-03 15:45:59 +02:00
2026-04-15 12:52:45 +02:00
2026-05-23 09:48:03 +02:00
2026-05-10 23:28:27 +02:00
2026-08-09 18:49:38 +02:00
2026-09-07 16:57:48 +02:00
2026-06-22 21:13:32 +02:00
2026-06-22 21:13:32 +02:00
2026-05-12 20:35:59 +02:00
2026-08-18 12:38:22 +02:00
2026-06-22 21:13:32 +02:00
2026-07-06 23:28:48 +02:00
2026-06-24 11:37:18 +10:00
2026-06-22 21:13:32 +02:00
2026-06-06 16:08:46 +02:00
2026-05-28 08:33:02 +02:00
2026-09-03 15:45:59 +02:00
2026-07-28 19:47:13 +02:00
2026-06-30 13:01:18 +02:00
2026-01-31 22:51:38 +01:00
2026-08-31 16:30:11 +02:00
2026-07-28 19:47:13 +02:00
2026-06-22 21:13:32 +02:00
2026-06-22 21:13:32 +02:00
2026-08-18 12:38:22 +02:00
2026-05-19 08:24:28 +02:00
2026-06-30 13:01:18 +02:00
2026-06-22 21:13:32 +02:00
2026-06-30 13:01:18 +02:00
2026-06-22 21:13:32 +02:00