eaGeier

Users Table

From EA-Geier

Jump to: navigation, search
Database
Config Table
Clients Table
ClientConfig Table
Users Table
UserConfig Table
Session2 Table
SimpleTest Table
Cash-Book Table
Assets-Book Table
Purchase-Book Table
Traveling-Expenses Table
Balance 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>
(Please click here to find the acronyms used on this page)
Personal tools
Advertisment