CREATE TABLE jos_installed_apps
(
id int(11) NOT NULL auto_increment,
app_name varchar(255) NOT NULL,
app_mainclass varchar(255) NOT NULL,
app_type int(2) unsigned NOT NULL default '0',
restricted tinyint(1) unsigned NOT NULL default '0',
install_date datetime NOT NULL,
PRIMARY KEY (id)
(
id int(11) NOT NULL auto_increment,
app_name varchar(255) NOT NULL,
app_mainclass varchar(255) NOT NULL,
app_type int(2) unsigned NOT NULL default '0',
restricted tinyint(1) unsigned NOT NULL default '0',
install_date datetime NOT NULL,
PRIMARY KEY (id)
);
本文介绍了一个用于记录应用程序安装信息的数据库表结构。该表包括应用程序名称、主类、类型、是否受限、安装日期等字段。
2694

被折叠的 条评论
为什么被折叠?



