From bfb0cacd541cc20129a3c0ac77130370741dca18 Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Wed, 18 Sep 2013 01:38:36 +0200 Subject: mysql to mysqli and a lot of cleanup and mvc --- db/install.sql | 20 -------------------- db/update.php | 2 +- 2 files changed, 1 insertion(+), 21 deletions(-) (limited to 'db') diff --git a/db/install.sql b/db/install.sql index 235e6224..0be9b891 100644 --- a/db/install.sql +++ b/db/install.sql @@ -1286,26 +1286,6 @@ INSERT INTO `UserGroups` (`id`, `uid`, `group_id`) VALUES (21, 3, -2), (22, 3, -5); --- -------------------------------------------------------- - --- --- Tabellenstruktur für Tabelle `UserPicture` --- - -DROP TABLE IF EXISTS `UserPicture`; -CREATE TABLE IF NOT EXISTS `UserPicture` ( - `UID` int(11) NOT NULL DEFAULT '0', - `Bild` longblob NOT NULL, - `ContentType` varchar(20) NOT NULL DEFAULT '', - `show` char(1) NOT NULL DEFAULT 'N', - PRIMARY KEY (`UID`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - --- --- Daten für Tabelle `UserPicture` --- - - -- -------------------------------------------------------- -- diff --git a/db/update.php b/db/update.php index 9c709f69..05f2cd73 100644 --- a/db/update.php +++ b/db/update.php @@ -1,6 +1,6 @@