Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
393 B
18 lines
393 B
BEGIN;
|
|
-- Model: Mumble
|
|
ALTER TABLE `mumble_mumble`
|
|
ADD `server_id` integer FIRST;
|
|
ALTER TABLE `mumble_mumble`
|
|
ADD `display` varchar(200) AFTER `name`;
|
|
ALTER TABLE `mumble_mumble`
|
|
MODIFY `port` integer NULL;
|
|
COMMIT;
|
|
|
|
BEGIN;
|
|
ALTER TABLE mumble_mumble DROP KEY `addr`;
|
|
COMMIT;
|
|
|
|
BEGIN;
|
|
CREATE INDEX `mumble_mumble_server_id_idx`
|
|
ON `mumble_mumble` (`server_id`);
|
|
COMMIT;
|