mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2025-12-11 03:10:28 +00:00
* clown time * let the shitfest begin * wild * kill me * sad * format * regex * erase manual dbcore connect procs * fix async * replacements, RunQuery() * replacements * more * update * epic * fix * a * a * more queries * queries * queries * queries * test * 4 * conversions * fix * a * that * prefixed * connection log * schema * prefixed * wack * oops * fix * Travis gaming * rid that * a * prefix that * prefix that * OH THATS IMPORTANT * bandaid * fixes * Update database_changelog.md Co-authored-by: VM_USER <VM_USER>
18 lines
569 B
SQL
18 lines
569 B
SQL
/**
|
|
* make sure to bump schema version and mark changes in database_changelog.md!
|
|
*
|
|
* you MUST use unified_ as a prefix.
|
|
*
|
|
* unified schema for citadel, **sync changes to both servers.**
|
|
**/
|
|
|
|
--
|
|
-- Table structure for table `schema_revision`
|
|
--
|
|
CREATE TABLE IF NOT EXISTS `unified_schema_revision` (
|
|
`major` TINYINT(3) unsigned NOT NULL,
|
|
`minor` TINYINT(3) unsigned NOT NULL,
|
|
`date` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`major`, `minor`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|