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.

16 lines
336 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. COMMIT;
  8. BEGIN;
  9. ALTER TABLE mumble_mumble DROP KEY `addr`;
  10. COMMIT;
  11. BEGIN;
  12. CREATE INDEX `mumble_mumble_server_id_idx`
  13. ON `mumble_mumble` (`server_id`);
  14. COMMIT;