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

  1. BEGIN;
  2. -- Model: Mumble
  3. ALTER TABLE `mumble_mumble`
  4. ADD `server_id` integer FIRST;
  5. ALTER TABLE `mumble_mumble`
  6. ADD `display` varchar(200) AFTER `name`;
  7. ALTER TABLE `mumble_mumble`
  8. MODIFY `port` integer NULL;
  9. COMMIT;
  10. BEGIN;
  11. ALTER TABLE mumble_mumble DROP KEY `addr`;
  12. COMMIT;
  13. BEGIN;
  14. CREATE INDEX `mumble_mumble_server_id_idx`
  15. ON `mumble_mumble` (`server_id`);
  16. COMMIT;