Add developer name to game data
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
-- https://www.phpmyadmin.net/
|
-- https://www.phpmyadmin.net/
|
||||||
--
|
--
|
||||||
-- Host: localhost
|
-- Host: localhost
|
||||||
-- Generation Time: Nov 01, 2025 at 07:22 PM
|
-- Generation Time: Nov 02, 2025 at 03:38 AM
|
||||||
-- Server version: 12.0.2-MariaDB
|
-- Server version: 12.0.2-MariaDB
|
||||||
-- PHP Version: 8.4.14
|
-- PHP Version: 8.4.14
|
||||||
|
|
||||||
@@ -32,6 +32,7 @@ CREATE TABLE `launchergames` (
|
|||||||
`name` text NOT NULL,
|
`name` text NOT NULL,
|
||||||
`official` tinyint(1) NOT NULL DEFAULT 0,
|
`official` tinyint(1) NOT NULL DEFAULT 0,
|
||||||
`verified` tinyint(1) NOT NULL DEFAULT 0,
|
`verified` tinyint(1) NOT NULL DEFAULT 0,
|
||||||
|
`developer` varchar(32) NOT NULL,
|
||||||
`cutOff` int(11) NOT NULL DEFAULT -1
|
`cutOff` int(11) NOT NULL DEFAULT -1
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ export const launcherGames = mysqlTable('launchergames', {
|
|||||||
name: text('name').notNull(),
|
name: text('name').notNull(),
|
||||||
official: boolean('official').notNull().default(false),
|
official: boolean('official').notNull().default(false),
|
||||||
verified: boolean('verified').notNull().default(false),
|
verified: boolean('verified').notNull().default(false),
|
||||||
|
developer: varchar('developer', { length: 32 }),
|
||||||
cutOff: int('cutOff').notNull().default(-1)
|
cutOff: int('cutOff').notNull().default(-1)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user