- Feb 5, 2013
- 1,180
- 412
Guys Add this to your database:
Sledmore didnt have the Code, so i made one which will help other people faster.
------------------------
EDIT
You guys will manually have to add pins via User Table so you can actually get in.
@Donkeey
Don't Know if this will count as a doublepost, but
i made a table for the "Values"
If you use Sledmore's Housekeeping and want to use the page Values, Here is the sql which i made
Code:
ALTER TABLE `users` ADD `housekeeping_pin` VARCHAR(4)
Sledmore didnt have the Code, so i made one which will help other people faster.
------------------------
EDIT
You guys will manually have to add pins via User Table so you can actually get in.
@Donkeey
Don't Know if this will count as a doublepost, but
i made a table for the "Values"
If you use Sledmore's Housekeeping and want to use the page Values, Here is the sql which i made
Code:
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `values`
-- ----------------------------
DROP TABLE IF EXISTS `values`;
CREATE TABLE `values` (
`name` varchar(100) NOT NULL,
`imgurl` varchar(999) NOT NULL,
`category` varchar(299) NOT NULL,
`timestamp` int(255) NOT NULL,
`start_amount` varchar(200) NOT NULL,
`sold_amount` varchar(200) NOT NULL,
`id` int(100) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Last edited by a moderator: