equal
deleted
inserted
replaced
32 -- No frontend to this yet so ranks should not have been created. |
32 -- No frontend to this yet so ranks should not have been created. |
33 DELETE FROM {{TABLE_PREFIX}}ranks WHERE rank_id = 4; |
33 DELETE FROM {{TABLE_PREFIX}}ranks WHERE rank_id = 4; |
34 INSERT INTO {{TABLE_PREFIX}}ranks(rank_id, rank_title, rank_style) VALUES |
34 INSERT INTO {{TABLE_PREFIX}}ranks(rank_id, rank_title, rank_style) VALUES |
35 (4, 'user_rank_guest', ''); |
35 (4, 'user_rank_guest', ''); |
36 |
36 |
|
37 -- Other rank-related columns |
|
38 ALTER TABLE {{TABLE_PREFIX}}groups ADD COLUMN group_rank int DEFAULT NULL; |
|
39 |
|
40 -- Disable JS effects column |
|
41 ALTER TABLE {{TABLE_PREFIX}}users_extra ADD COLUMN disable_js_fx smallint NOT NULL DEFAULT 0; |
|
42 |