feat: update DevilFruitType to include 'Smile' for enhanced categorization
All checks were successful
Build Docker Image / build (push) Successful in 1m28s

This commit is contained in:
2026-03-03 23:12:17 +01:00
parent 6402c378dd
commit 70de84f3ab
2 changed files with 156 additions and 112 deletions

View File

@@ -2,7 +2,7 @@ import { integer, sqliteTable, text, real, unique } from 'drizzle-orm/sqlite-cor
import { user } from './auth.schema';
// Define devil fruit types
export type DevilFruitType = 'Paramecia' | 'Zoan' | 'Logia' | 'Unknown';
export type DevilFruitType = 'Paramecia' | 'Zoan' | 'Logia' | 'Smile' | 'Unknown';
// Define the site config table schema
export const config = sqliteTable('config', {