forked from joepie91/BlueCP
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.sql
More file actions
87 lines (71 loc) · 2.65 KB
/
Copy pathdata.sql
File metadata and controls
87 lines (71 loc) · 2.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
CREATE TABLE IF NOT EXISTS `accounts` (
`id` int(8) NOT NULL AUTO_INCREMENT,
`username` varchar(65) NOT NULL,
`email` varchar(65) NOT NULL,
`active` int(1) NOT NULL,
`activation_code` varchar(65) NOT NULL,
`plan` int(8) NOT NULL,
`initial_setup` int(1) NOT NULL DEFAULT '0',
`stats_email` int(1) NOT NULL,
`welcome_closed` int(1) NOT NULL,
`max_list_files` int(8) NOT NULL DEFAULT '-1',
`save_sort_files` int(2) NOT NULL DEFAULT '0',
`default_editor` varchar(65) NOT NULL DEFAULT 'default',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=19 ;
--
-- Dumping data for table `accounts`
--
INSERT INTO `accounts` (`username`, `email`, `active`, `activation_code`, `plan`, `initial_setup`, `stats_email`, `welcome_closed`, `max_list_files`, `save_sort_files`, `default_editor`) VALUES
('root', 'admin@localhost', 1, '', 1, 0, 0, 0, '10', 0, 'default');
-- --------------------------------------------------------
--
-- Table structure for table `domains`
--
CREATE TABLE IF NOT EXISTS `domains` (
`id` int(8) NOT NULL AUTO_INCREMENT,
`user_id` int(8) NOT NULL,
`domain_name` varchar(65) NOT NULL,
`active` int(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=42 ;
--
-- Dumping data for table `domains`
--
INSERT INTO `domains` (`id`, `user_id`, `domain_name`, `active`) VALUES
(41, 18, 'localhost', 1);
-- --------------------------------------------------------
--
-- Table structure for table `plans`
--
CREATE TABLE IF NOT EXISTS `plans` (
`id` int(8) NOT NULL AUTO_INCREMENT,
`name` varchar(65) NOT NULL,
`max_domains` int(8) NOT NULL,
`max_parked_domains` int(8) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `settings`
--
CREATE TABLE IF NOT EXISTS `settings` (
`id` int(8) NOT NULL AUTO_INCREMENT,
`setting_name` varchar(65) NOT NULL,
`setting_value` varchar(65) NOT NULL,
`setting_group` varchar(65) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
--
-- Dumping data for table `settings`
--
INSERT INTO `settings` (`id`, `setting_name`, `setting_value`, `setting_group`) VALUES
(1, 'template', 'blue_default', 'design_settings'),
(2, 'panel_title', 'NEON', 'panel_settings'),
(3, 'registration_enabled', 'disabled', 'panel_settings'),
(4, 'forgotpassword_enabled', 'disabled', 'panel_settings'),
(5, 'default_ip', 'localhost', 'panel_settings'),
(6, 'max_panel_upload_size', '25MB', 'panel_settings'),
(7, 'version', '0', 'panel_settings');
DROP DATABASE test;
DELETE FROM mysql.user WHERE User='';