update.sql 732 B

1234567891011121314151617181920212223242526272829303132
  1. alter table media_server
  2. drop column streamNoneReaderDelayMS;
  3. alter table stream_proxy
  4. add enable_disable_none_reader bit(1) default null;
  5. alter table device
  6. add mediaServerId varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'auto';
  7. alter table device
  8. add custom_name varchar(255) default null;
  9. alter table device
  10. add sdpIp varchar(50) default null;
  11. alter table device
  12. add password varchar(255) default null;
  13. alter table device
  14. modify ip varchar(50) null;
  15. alter table device
  16. modify port int null;
  17. alter table device
  18. modify expires int null;
  19. alter table device
  20. modify subscribeCycleForCatalog int null;
  21. alter table device
  22. modify hostAddress varchar(50) null;