Login   Register  
PHP Classes
elePHPant
Icontem

File: cUser_table.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2003-08-30 14:25
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 ;