Răsfoiți Sursa

attribute type 'acl' added

Karel Kozlik 19 ani în urmă
părinte
comite
5212d6d78d

+ 10 - 0
db/schema/attr_types.xml

@@ -129,6 +129,16 @@
 	 <value col="at.prior">65536</value>
     </row>
     
+    <row><value col="at.name">acl</value>
+         <value col="at.type">2</value>
+         <value col="at.rich_t">string</value>
+         <value col="at.desc">access control list of user</value>
+         <value col="at.d_flags">33</value>
+         <value col="at.flags">1</value>
+         <value col="at.prior">0</value>
+         <value col="at.order">0</value>
+    </row>
+     
     <row><value col="at.name">first_name</value>      
          <value col="at.type">2</value>
          <value col="at.rich_t">string</value>

+ 1 - 0
scripts/dbtext/ser_db/attr_types

@@ -7,6 +7,7 @@ fr_inv_timer:string:2:::1:0:0:0
 flags:string:0:::1:0:0:0
 gflags:string:0:::1:0:0:0
 digest_realm:string:2::digest realm:33:0:65536:0
+acl:string:2::access control list of user:33:1:0:0
 first_name:string:2::@ff_first_name:32:2:256:10
 last_name:string:2::@ff_last_name:32:2:256:20
 email:email_adr:2::@ff_email:32:2:256:30

+ 1 - 0
scripts/mysql/my_create.sql

@@ -124,6 +124,7 @@ INSERT INTO attr_types (name, raw_type, default_flags) VALUES ('fr_inv_timer', '
 INSERT INTO attr_types (name, raw_type, default_flags) VALUES ('flags', '0', '1');
 INSERT INTO attr_types (name, raw_type, default_flags) VALUES ('gflags', '0', '1');
 INSERT INTO attr_types (name, raw_type, description, default_flags, priority) VALUES ('digest_realm', '2', 'digest realm', '33', '65536');
+INSERT INTO attr_types (name, raw_type, rich_type, description, default_flags, flags, priority, ordering) VALUES ('acl', '2', 'string', 'access control list of user', '33', '1', '0', '0');
 INSERT INTO attr_types (name, raw_type, rich_type, description, default_flags, flags, priority, ordering) VALUES ('first_name', '2', 'string', '@ff_first_name', '32', '2', '256', '10');
 INSERT INTO attr_types (name, raw_type, rich_type, description, default_flags, flags, priority, ordering) VALUES ('last_name', '2', 'string', '@ff_last_name', '32', '2', '256', '20');
 INSERT INTO attr_types (name, raw_type, rich_type, description, default_flags, flags, priority, ordering) VALUES ('email', '2', 'email_adr', '@ff_email', '32', '2', '256', '30');

+ 1 - 0
scripts/oracle/or_create.sql

@@ -119,6 +119,7 @@ INSERT INTO attr_types (name, raw_type, default_flags) VALUES ('fr_inv_timer', '
 INSERT INTO attr_types (name, raw_type, default_flags) VALUES ('flags', '0', '1');
 INSERT INTO attr_types (name, raw_type, default_flags) VALUES ('gflags', '0', '1');
 INSERT INTO attr_types (name, raw_type, description, default_flags, priority) VALUES ('digest_realm', '2', 'digest realm', '33', '65536');
+INSERT INTO attr_types (name, raw_type, rich_type, description, default_flags, flags, priority, ordering) VALUES ('acl', '2', 'string', 'access control list of user', '33', '1', '0', '0');
 INSERT INTO attr_types (name, raw_type, rich_type, description, default_flags, flags, priority, ordering) VALUES ('first_name', '2', 'string', '@ff_first_name', '32', '2', '256', '10');
 INSERT INTO attr_types (name, raw_type, rich_type, description, default_flags, flags, priority, ordering) VALUES ('last_name', '2', 'string', '@ff_last_name', '32', '2', '256', '20');
 INSERT INTO attr_types (name, raw_type, rich_type, description, default_flags, flags, priority, ordering) VALUES ('email', '2', 'email_adr', '@ff_email', '32', '2', '256', '30');

+ 1 - 0
scripts/postgres/pg_create.sql

@@ -127,6 +127,7 @@ INSERT INTO attr_types (name, raw_type, default_flags) VALUES ('fr_inv_timer', '
 INSERT INTO attr_types (name, raw_type, default_flags) VALUES ('flags', '0', '1');
 INSERT INTO attr_types (name, raw_type, default_flags) VALUES ('gflags', '0', '1');
 INSERT INTO attr_types (name, raw_type, description, default_flags, priority) VALUES ('digest_realm', '2', 'digest realm', '33', '65536');
+INSERT INTO attr_types (name, raw_type, rich_type, description, default_flags, flags, priority, ordering) VALUES ('acl', '2', 'string', 'access control list of user', '33', '1', '0', '0');
 INSERT INTO attr_types (name, raw_type, rich_type, description, default_flags, flags, priority, ordering) VALUES ('first_name', '2', 'string', '@ff_first_name', '32', '2', '256', '10');
 INSERT INTO attr_types (name, raw_type, rich_type, description, default_flags, flags, priority, ordering) VALUES ('last_name', '2', 'string', '@ff_last_name', '32', '2', '256', '20');
 INSERT INTO attr_types (name, raw_type, rich_type, description, default_flags, flags, priority, ordering) VALUES ('email', '2', 'email_adr', '@ff_email', '32', '2', '256', '30');