MT#19795 rtc_sessions deprecate network tag

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: I76c69250217e1295f511e74a17ef55504e526b80
changes/94/6394/4
Gerhard Jungwirth 10 years ago
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…
Cancel
Save