Users Table

The users table holds all registered users of the ea-Geier. It includes the part of the user configuration data which is unique to the user. e.g. name, email address, or password.

<?xml version="1.0"?>
<schema version="0.3">
  <table name="users">
    <field name="id" type="I" size="6">
      <KEY/>
      <AUTOINCREMENT/>
      <UNSIGNED/>
    </field>
    <field name="mail" type="X">
      <NOTNULL/>
    </field>
    <field name="pw" type="C" size="32">
      <NOTNULL/>
    </field>
    <field name="name" type="C" size="64">
      <NOTNULL/>
    </field>
    <field name="lastModified" type="T">
      <NOTNULL/>
    </field>
    <index name="mail">
      <UNIQUE/>
      <col>mail</col>
    </index>
  </table>
</schema>