Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/src/entities/team.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function Longtext() {
// Sqlite doesn't support longtext. I hate this, but it is what it is if we want
// to keep backend tests and prepare tilt for the upcoming Hackaburg as quickly
// as possible.
if (process.env.NODE_ENV === 'test') {
if (process.env.NODE_ENV === "test") {
return Column("text");
}
return Column("longtext");
Expand Down
Loading
Loading