# Table structure 'ftpgroup' #Create Table 'ftpgroup '( 'Groupname' varchar (16) not null default '', 'Gid' smallint (6) Not null default '20140901 ', 'Members 'varchar (16) not null default '', Key 'groupname' ('groupname ') ) Type = MyISAM comment = 'proftp group table '; # # Export the data in the table 'ftpgroup' # Insert into 'ftpgroup' values ('ftpgroup', 5500, 'ftpuser '); #-------------------------------------------------------- # # Table structure 'ftpquotalimits' # Create Table 'ftpquotalimits '( 'Name' varchar (30) default null, 'Quota _ type' Enum ('user', 'group', 'class', 'all') not null default 'user ', 'Per _ session' Enum ('false', 'true') not null default 'false ', 'Limit _ type' Enum ('soft ', 'hard') not null default 'soft ', 'Bytes _ in_avail 'float not null default '0 ', 'Bytes _ out_avail 'float not null default '0 ', 'Bytes _ xfer_avail 'float not null default '0 ', 'Files _ in_avail 'int (10) unsigned not null default '0 ', 'Files _ out_avail 'int (10) unsigned not null default '0 ', 'Files _ xfer_avail 'int (10) unsigned not null default '0' ) Type = MyISAM; # # Export the data in the table 'ftpquotalimits' # Insert into 'ftpquotalimits 'values ('test', 'user', 'true', 'hard', '9e + 06', '9e + 09 ', 2000,200 0, 2000 ); #-------------------------------------------------------- # # Table structure 'ftpquotatallies' # Create Table 'ftpquotatallies '( 'Name' varchar (30) not null default '', 'Quota _ type' Enum ('user', 'group', 'class', 'all') not null default 'user ', 'Bytes _ in_used' float not null default '0 ', 'Bytes _ out_used' float not null default '0 ', 'Bytes _ xfer_used' float not null default '0 ', 'Files _ in_used' int (10) unsigned not null default '0 ', 'Files _ out_used' int (10) unsigned not null default '0 ', 'Files _ xfer_used' int (10) unsigned not null default '0' ) Type = MyISAM; # # Export the table data 'ftpquotatallies' # Insert into 'ftpquotatallies' values ('test', 'user', '000000', '000000', '000000', 2000 0, 2000 ); #-------------------------------------------------------- # # Table structure 'ftpuser' # Create Table 'ftpuser '( 'Id' int (10) unsigned not null auto_increment, 'Userid' varchar (32) not null default '', 'Passwd' varchar (32) not null default '', 'Uid' smallint (6) Not null default '123 ', 'Gid' smallint (6) Not null default '20140901 ', 'Homedir' varchar (255) not null default '', 'Shell 'varchar (16) not null default'/sbin/nologin ', 'Count' int (11) not null default '0 ', 'Accessed' datetime not null default '2017-00-00 00:00:00 ', 'Modified' datetime not null default '2017-00-00 00:00:00 ', Primary Key ('id ') ) Type = MyISAM comment = 'proftp user table' auto_increment = 3; # # Export the data 'ftpuser' In the table' # Insert into 'ftpuser' values (1, 'test', '000000', 123456 0, '/home/test','/sbin/nologin', 36, '2017-09-28 13:07:41 ', '2017-09-28 13:07:42 '); |