Merge pull request 'DEBUG: Erreur de schéma de donnée' (#6) from dev into prod
Some checks failed
Backend Tests / test (push) Has been cancelled
Lint / lint (push) Has been cancelled
Deploy to Production / deploy (push) Failing after 1m1s

Reviewed-on: #6
This commit was merged in pull request #6.
This commit is contained in:
2026-01-14 20:17:42 +01:00
8 changed files with 3324 additions and 35 deletions

View File

@@ -3,9 +3,6 @@ on:
push: push:
paths: paths:
- 'backend/**' - 'backend/**'
pull_request:
paths:
- 'backend/**'
jobs: jobs:
test: test:

View File

@@ -5,11 +5,6 @@ on:
- 'frontend/**' - 'frontend/**'
- 'backend/**' - 'backend/**'
- 'documentation/**' - 'documentation/**'
pull_request:
paths:
- 'frontend/**'
- 'backend/**'
- 'documentation/**'
jobs: jobs:
lint: lint:

View File

@@ -0,0 +1,2 @@
ALTER TABLE "users" ALTER COLUMN "password_hash" SET DATA TYPE varchar(255);--> statement-breakpoint
ALTER TABLE "users" DROP COLUMN "avatar_url";

View File

@@ -0,0 +1 @@
ALTER TABLE "users" ALTER COLUMN "password_hash" SET DATA TYPE varchar(95);

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,27 +1,41 @@
{ {
"version": "7", "version": "7",
"dialect": "postgresql", "dialect": "postgresql",
"entries": [ "entries": [
{ {
"idx": 0, "idx": 0,
"version": "7", "version": "7",
"when": 1767618753676, "when": 1767618753676,
"tag": "0000_right_sally_floyd", "tag": "0000_right_sally_floyd",
"breakpoints": true "breakpoints": true
}, },
{ {
"idx": 1, "idx": 1,
"version": "7", "version": "7",
"when": 1768392191169, "when": 1768392191169,
"tag": "0001_purple_goliath", "tag": "0001_purple_goliath",
"breakpoints": true "breakpoints": true
}, },
{ {
"idx": 2, "idx": 2,
"version": "7", "version": "7",
"when": 1768393637823, "when": 1768393637823,
"tag": "0002_redundant_skin", "tag": "0002_redundant_skin",
"breakpoints": true "breakpoints": true
} },
] {
} "idx": 3,
"version": "7",
"when": 1768415667895,
"tag": "0003_colossal_fantastic_four",
"breakpoints": true
},
{
"idx": 4,
"version": "7",
"when": 1768417827439,
"tag": "0004_cheerful_dakota_north",
"breakpoints": true
}
]
}

View File

@@ -29,7 +29,7 @@ export const users = pgTable(
displayName: varchar("display_name", { length: 32 }), displayName: varchar("display_name", { length: 32 }),
username: varchar("username", { length: 32 }).notNull().unique(), username: varchar("username", { length: 32 }).notNull().unique(),
passwordHash: varchar("password_hash", { length: 72 }).notNull(), passwordHash: varchar("password_hash", { length: 95 }).notNull(),
// Sécurité // Sécurité
twoFactorSecret: pgpEncrypted("two_factor_secret"), twoFactorSecret: pgpEncrypted("two_factor_secret"),