Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' into shield-pouncing
Browse files Browse the repository at this point in the history
  • Loading branch information
Helg2 authored Jun 18, 2024
2 parents db6a2fb + 8578387 commit ea4ffcf
Show file tree
Hide file tree
Showing 273 changed files with 20,483 additions and 147 deletions.
19 changes: 19 additions & 0 deletions SQL/tgmc-schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,25 @@ CREATE TABLE IF NOT EXISTS `connection_log` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

CREATE TABLE IF NOT EXISTS `clan` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) DEFAULT NULL,
`description` varchar(2048) NOT NULL,
`honor` int(11) DEFAULT 0,
`color` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

CREATE TABLE IF NOT EXISTS `clan_player` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`byond_ckey` varchar(32) DEFAULT NULL,
`clan_rank` int(11) DEFAULT 1,
`permissions` int(11) DEFAULT 1,
`clan_id` int(11) DEFAULT 0,
`honor` int(11) DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

-- Data exporting was unselected.
-- Dumping structure for table feedback.death
CREATE TABLE IF NOT EXISTS `death` (
Expand Down
Loading

0 comments on commit ea4ffcf

Please sign in to comment.