Seite 1 von 1

SQL-Problem

Verfasst: 09.12.2003 13:56
von muepe
Hallo zusammen,

ich habe ein kleines Problem:

in dem MOD

## EasyMod 0.0.7 compliant
##############################################################
## MOD Title: Mod Post Notification
## MOD Author: netclectic < adrian@netclectic.com > (Adrian Cockburn) www.netclectic.com
## MOD Description: Notify forum moderators of any new posts to the forum(s) they are moderator of.
## Includes addition to users profile to let them choose to enable / disable new post notification.
## MOD Version: 1.2.5

wird folgender SQL-Eintrag gefordert:

#-----[ SQL ]------------------------------------------
#
# CHANGE TABLE PREFIX ACCORDINGLY!!!
#
# ACCESS USERS
# ALTER TABLE phpbb_users ADD user_notify_mod BYTE NOT NULL;
#
ALTER TABLE phpbb_users ADD user_notify_mod TINYINT(1) NOT NULL;

Kann mir bitte jemand sagen, was genau ich in meiner Datenbank eingeben muss?

Danke und Gruss!

Verfasst: 09.12.2003 15:13
von PhilippK
Du must (i.d.R. mit phpMyAdmin den SQL-Befehl

Code: Alles auswählen

ALTER TABLE phpbb_users ADD user_notify_mod TINYINT(1) NOT NULL;
ausführen.

Gruß, Philipp

Verfasst: 09.12.2003 16:10
von muepe
Und wofür ist dann das
# CHANGE TABLE PREFIX ACCORDINGLY!!!
#
# ACCESS USERS
# ALTER TABLE phpbb_users ADD user_notify_mod BYTE NOT NULL;
#
??

Ich bin noch relativ neu, was PHP und MySQL angeht.

Danke schonmal!

Verfasst: 09.12.2003 16:17
von PhilippK
Das obere ist auskommentiert. Der untere SQL-Befehl sollte ausreichen.

Gruß, Philipp

Verfasst: 09.12.2003 16:26
von muepe
Danke für den Support!