PHP Classes

File: cUser_table.sql

Recommend this page to a friend!
  Classes of Tim M   cUser   cUser_table.sql   Download  
File: cUser_table.sql
Role: Auxiliary data
Content type: text/plain
Description: MySQL Table
Class: cUser
User management and authentication system
Author: By
Last change:
Date: 20 years ago
Size: 290 bytes
 

Contents

Class file image Download
CREATE TABLE `cUser_table` ( `id` bigint(20) NOT NULL auto_increment, `username` text NOT NULL, `password` text NOT NULL, `random` bigint(20) NOT NULL default '0', `unique` text NOT NULL, PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='cUser - User Table' AUTO_INCREMENT=1 ;