# phpMyAdmin MySQL-Dump
# version 2.2.6
# http://phpwizard.net/phpMyAdmin/
# http://www.phpmyadmin.net/ (download page)
#
# Host: localhost
# Erstellungszeit: 23. Juni 2002 um 06:09
# Server Version: 3.23.48
# PHP-Version: 4.1.0
# Datenbank : `thehell`
# --------------------------------------------------------
#
# Tabellenstruktur für Tabelle `groups`
#
CREATE TABLE groups (
id bigint(20) unsigned NOT NULL auto_increment,
name varchar(40) NOT NULL default '',
description longtext,
admin tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (id),
KEY name (name)
) TYPE=MyISAM COMMENT='enthält die Daten der Benutzergruppen, hier werden die Benut';
# --------------------------------------------------------
#
# Tabellenstruktur für Tabelle `user`
#
CREATE TABLE user (
id bigint(20) unsigned NOT NULL auto_increment,
group_id bigint(20) unsigned NOT NULL default '0',
username char(40) NOT NULL default '',
password char(40) NOT NULL default '',
email char(60) NOT NULL default '',
PRIMARY KEY (id)
) TYPE=MyISAM COMMENT='enthält die Benutzerdaten';
|