mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 08:37:43 +01:00
[MIRROR] Moves explorer adventures to the database. (#5923)
* Moves explorer adventures to the database. * Cleans up Merge Conflict. Increments DB Version (#5979) * Automatic changelog generation for PR #5979 [ci skip] * Update tgstation_schema.sql Co-authored-by: AnturK <AnturK@users.noreply.github.com> Co-authored-by: ORCACommander <ORCACommander@users.noreply.github.com> Co-authored-by: Useroth <37159550+Useroth@users.noreply.github.com>
This commit is contained in:
co-authored by
AnturK
ORCACommander
Useroth
parent
4e7a0e4dc2
commit
5cdc6a6bc9
@@ -624,6 +624,19 @@ CREATE TABLE `SS13_discord_links` (
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
--
|
||||
-- Table structure for table `text_adventures`
|
||||
--
|
||||
DROP TABLE IF EXISTS `SS13_text_adventures`;
|
||||
CREATE TABLE `SS13_text_adventures` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`adventure_data` LONGTEXT NOT NULL,
|
||||
`uploader` VARCHAR(32) NOT NULL,
|
||||
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`approved` TINYINT(1) NOT NULL DEFAULT FALSE,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
|
||||
Reference in New Issue
Block a user