-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9da80eb
commit 6228a25
Showing
3 changed files
with
32 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CREATE TABLE IF NOT EXISTS `y_nodesoftware` ( | ||
`id` int(8) NOT NULL AUTO_INCREMENT, | ||
`descr` varchar(32) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Node software is installed on', | ||
`appname` varchar(128) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Name of software', | ||
`appver` varchar(32) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Version of software', | ||
`apppub` varchar(128) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Publisher of software', | ||
`appdate` varchar(16) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Install date of software', | ||
PRIMARY KEY (`id`) | ||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Software installed on nodes'; |