egroupware/phpgwapi/js/dhtmlxtree/samples/with_db/database.sql
2006-03-19 17:51:23 +00:00

10 lines
276 B
SQL

Create database sampledb;
use sampledb;
CREATE TABLE Tree (
item_id INT UNSIGNED not null AUTO_INCREMENT,
item_nm VARCHAR (200) DEFAULT '0',
item_order INT UNSIGNED DEFAULT '0',
item_desc TEXT ,
item_parent_id INT UNSIGNED DEFAULT '0',
PRIMARY KEY ( item_id )
)