mirror of https://github.com/sipwise/db-schema.git
in the future, we will connect one rtc-session to all related networks (via rtc-accounts). therefore, there is no need anymore, to store the network tag here. assign a default, in order to ensure compatibility with old and new code Change-Id: I76c69250217e1295f511e74a17ef55504e526b80changes/94/6394/4
parent
3592e829db
commit
4e8510ff22
@ -0,0 +1,7 @@
|
||||
USE provisioning;
|
||||
SET autocommit=0;
|
||||
|
||||
ALTER TABLE rtc_session
|
||||
ALTER COLUMN `rtc_network_tag` DROP DEFAULT;
|
||||
|
||||
COMMIT;
|
||||
@ -0,0 +1,7 @@
|
||||
USE provisioning;
|
||||
SET autocommit=0;
|
||||
|
||||
ALTER TABLE rtc_session
|
||||
ALTER COLUMN `rtc_network_tag` SET DEFAULT '';
|
||||
|
||||
COMMIT;
|
||||
Loading…
Reference in new issue