Ganon_Master wrote:Hmm...I smell a points system being added to the premod!
Database inserts go into install/database_update.php. Find the line below, and you'll see where your first SQL line needs to go.Code: Select all
// add the various statements   Â
The second line, is altering the table. Shouldn't be necessary, since you're installing phpBB for the first time. So you can jsut add it to the table creation. The SQL files are in the install\schemas folder. For instance, you have the mysql_40_schema.sql.Code: Select all
#
#-----[ FIND ]------------------------------------------
#
# Table: 'phpbb_users'
#
#-----[ FIND ]------------------------------------------
#
user_newpasswd varbinary(96) DEFAULT '' NOT NULL,
#
#-----[ AFTER, ADD ]------------------------------------------
#
user_points int(11) DEFAULT '0' NOT NULL
eviL <3 do I still need to do this part as well?