- Timestamp:
- Feb 18, 2014, 2:53:55 PM (12 years ago)
- Location:
- branches/eam_branches/ipp-20140206
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
ippTools/share (modified) (1 prop)
-
ippTools/share/pxadmin_create_tables.sql (modified) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20140206
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20140206/ippTools/share
- Property svn:mergeinfo deleted
-
branches/eam_branches/ipp-20140206/ippTools/share/pxadmin_create_tables.sql
- Property svn:mergeinfo deleted
r36493 r36536 2365 2365 ) ENGINE=innodb DEFAULT CHARSET=latin1; 2366 2366 2367 CREATE TABLE remoteRun ( 2368 remote_id BIGINT NOT NULL AUTO_INCREMENT, 2369 state VARCHAR(64) NOT NULL, 2370 stage VARCHAR(64) NOT NULL, 2371 label VARCHAR(64) NOT NULL, 2372 path_base VARCHAR(255) NOT NULL, 2373 job_id BIGINT, 2374 last_poll TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, 2375 fault SMALLINT NOT NULL, 2376 PRIMARY KEY (remote_id), 2377 KEY (state), 2378 KEY (stage), 2379 KEY (label), 2380 KEY (job_id) 2381 ) ENGINE=innodb DEFAULT CHARSET=latin1; 2382 2383 CREATE TABLE remoteComponent ( 2384 remote_id BIGINT, 2385 stage_id BIGINT, 2386 KEY (stage_id), 2387 FOREIGN KEY (remote_id) REFERENCES remoteRun(remote_id) 2388 ) ENGINE=innodb DEFAULT CHARSET=latin1; 2367 2389 2368 2390 -- These comment lines are here to avoid an empty query error.
Note:
See TracChangeset
for help on using the changeset viewer.
