TT#65101 add billing.admins is_ccare

* is_ccare flags a user as customer care one
      and is used in ngcp-panel to restrict the role
      only to Customer/Subsceriber related scopes

Change-Id: I72ff7d2d3ba6e56306e1a326f26475cee28e8100
changes/33/32733/2
Kirill Solomko 6 years ago
parent 6618e9be0c
commit faa22b3e8b

@ -0,0 +1,3 @@
USE billing;
ALTER TABLE admins DROP COLUMN is_ccare;

@ -0,0 +1,4 @@
USE billing;
ALTER TABLE admins
ADD COLUMN is_ccare tinyint(1) NOT NULL DEFAULT 0 AFTER is_superuser;
Loading…
Cancel
Save