mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
d4af7d76a2
* Add behaviors migration Add migration for behaviors. Tested that the tables get altered correctly, names are set correctly. Tested that I can place models, both regular and Brick-by-Brick ones and that they get deleted properly. Tested that picking up models and re-placing them down properly updates them in the tables. * Only update when empty
12 lines
558 B
SQL
12 lines
558 B
SQL
ALTER TABLE properties_contents
|
|
ADD COLUMN model_name TEXT NOT NULL DEFAULT "",
|
|
ADD COLUMN model_description TEXT NOT NULL DEFAULT "",
|
|
ADD COLUMN behavior_1 INT NOT NULL DEFAULT 0,
|
|
ADD COLUMN behavior_2 INT NOT NULL DEFAULT 0,
|
|
ADD COLUMN behavior_3 INT NOT NULL DEFAULT 0,
|
|
ADD COLUMN behavior_4 INT NOT NULL DEFAULT 0,
|
|
ADD COLUMN behavior_5 INT NOT NULL DEFAULT 0;
|
|
|
|
UPDATE properties_contents SET model_name = CONCAT("Objects_", lot, "_name") WHERE model_name = "";
|
|
CREATE TABLE IF NOT EXISTS behaviors (id INT NOT NULL, behavior_info TEXT NOT NULL);
|