wafuboe
Active Member
- Joined
- Dec 24, 2010
- Messages
- 884
- Solutions
- 2
- Reaction score
- 26
I use sqlitestudio dunno wtf is phpmyadmin, y need to create a table with a code but i dont know what i have to do plzz help!
5) Now you have the raid configured you will need to add a new table to your database.
->5a) Go into localhost/phpmyadmin and logon to your database.
->5b) Find the tab that says "SQL" and click it. Next add the the following code into the box and click "go":
Code:
CREATE TABLE `boss_raids` (
`id` int(11) NOT NULL default '1',
`enabled` tinyint(2) NOT NULL default '1',
`active` tinyint(2) NOT NULL default '0',
`boss` varchar(30) NOT NULL,
`lastExecution` int(25) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
5) Now you have the raid configured you will need to add a new table to your database.
->5a) Go into localhost/phpmyadmin and logon to your database.
->5b) Find the tab that says "SQL" and click it. Next add the the following code into the box and click "go":
Code:
CREATE TABLE `boss_raids` (
`id` int(11) NOT NULL default '1',
`enabled` tinyint(2) NOT NULL default '1',
`active` tinyint(2) NOT NULL default '0',
`boss` varchar(30) NOT NULL,
`lastExecution` int(25) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;