mirror of
https://github.com/aljazceru/cowrie.git
synced 2025-12-17 14:04:28 +01:00
git-svn-id: https://kippo.googlecode.com/svn/trunk@157 951d7100-d841-11de-b865-b3884708a8e2
7 lines
202 B
SQL
7 lines
202 B
SQL
ALTER TABLE `sessions` ADD `client` INT( 4 ) NULL DEFAULT NULL ;
|
|
CREATE TABLE `clients` (
|
|
`id` INT( 4 ) NOT NULL AUTO_INCREMENT ,
|
|
`version` VARCHAR( 50 ) NOT NULL ,
|
|
PRIMARY KEY ( `id` )
|
|
) ;
|