--
-- Table structure for table `event`
--
CREATE TABLE event (
id int(11) NOT NULL,
event_name varchar(125) NOT NULL,
event_date date NOT NULL default '0000-00-00',
max_tickets int(4) NOT NULL,
price float(6,2) NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;
--
-- Table structure for table `users`
--
CREATE TABLE users (
id int(11) NOT NULL,
first_name varchar(45) NOT NULL,
last_name varchar(45) NOT NULL,
username varchar(25) NOT NULL,
`password` varchar(50) NOT NULL,
join_date timestamp NOT NULL,
is_admin tinyint(4) NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;