The clients table holds a list of all clients of the ea-Geier. It includes the part of the client configuration data which is unique to the client. e.g. name, owner, or assigned users.
<?xml version="1.0"?> <schema version="0.3"> <table name="clients"> <field name="id" type="I" size="6"> <KEY/> <AUTOINCREMENT/> <UNSIGNED/> </field> <field name="name" type="C" size="64"> <NOTNULL/> </field> <field name="owner" type="I" size="6"> <NOTNULL/> <UNSIGNED/> </field> <field name="users" type="X"> <NOTNULL/> </field> <field name="db" type="B"/> <field name="lastModified" type="T"> <NOTNULL/> </field> <index name="owner"> <col>owner</col> </index> </table> </schema>