forked from renzuzu/renzu_jobs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsql.sql
More file actions
21 lines (19 loc) · 628 Bytes
/
sql.sql
File metadata and controls
21 lines (19 loc) · 628 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
CREATE TABLE IF NOT EXISTS `renzu_jobs` (
`name` VARCHAR(64) NOT NULL COLLATE 'utf8mb4_bin',
`accounts` LONGTEXT NULL COLLATE 'utf8mb4_bin',
`inventory` LONGTEXT NULL COLLATE 'utf8mb4_bin',
`garage` LONGTEXT NULL COLLATE 'utf8mb4_bin',
PRIMARY KEY (`name`) USING BTREE
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
;
CREATE TABLE IF NOT EXISTS `saveclothes` (
`identifier` VARCHAR(64) NOT NULL COLLATE 'utf8mb4_bin',
`wardrobe` LONGTEXT NULL COLLATE 'utf8mb4_bin',
PRIMARY KEY (`identifier`) USING BTREE
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
;
ALTER TABLE `users` ADD COLUMN `name` VARCHAR(32) NULL;