#This file creates the table #dvt_user use FISH SEE OTHER FILe for upto date verison CREATE TABLE dvt_user (user_id int(8) AUTO_INCREMENT, emailaddress char(255), organisation char(40), dvt_password char(16), authorised_y_n ENUM('y', 'n'), logged_in_y_n ENUM('y', 'n'), group_id int(8), token1 int(8), token2 int(8), ip char(19), logintime DATETIME, PRIMARY KEY (user_id) );