ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/db/test_table01
Revision: 1.2
Committed: Tue Nov 28 10:05:14 2000 UTC (23 years, 9 months ago) by pjm2
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Log Message:
Removed this test table!

File Contents

# User Rev Content
1 pjm2 1.1 create table packet(
2    
3     id int(20) NOT NULL AUTO_INCREMENT,
4     machine_name varchar(21),
5     ip varchar(15),
6     #full_xml varchar(8192),
7     PRIMARY KEY (id),
8     UNIQUE id (id)
9    
10     );