mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
0ddd20e2b5
* Ugc: Use persistent Id for rocekts and cars * Remove comment * Ugc: Save rocket and car IDs to the database * Correct names * Database: formatting
6 lines
193 B
SQL
6 lines
193 B
SQL
CREATE TABLE IF NOT EXISTS ugc_modular_build (
|
|
ugc_id BIGINT NOT NULL PRIMARY KEY,
|
|
character_id BIGINT NOT NULL REFERENCES charinfo(id) ON DELETE CASCADE,
|
|
ldf_config VARCHAR(60) NOT NULL
|
|
);
|