Lines 920-925
DROP TABLE IF EXISTS `branchtransfers`;
Link Here
|
920 |
CREATE TABLE `branchtransfers` ( -- information for items that are in transit between branches |
920 |
CREATE TABLE `branchtransfers` ( -- information for items that are in transit between branches |
921 |
`branchtransfer_id` int(12) NOT NULL auto_increment, -- primary key |
921 |
`branchtransfer_id` int(12) NOT NULL auto_increment, -- primary key |
922 |
`itemnumber` int(11) NOT NULL default 0, -- the itemnumber that it is in transit (items.itemnumber) |
922 |
`itemnumber` int(11) NOT NULL default 0, -- the itemnumber that it is in transit (items.itemnumber) |
|
|
923 |
`daterequested` timestamp NOT NULL default CURRENT_TIMESTAMP, -- the date the transfer was requested |
923 |
`datesent` datetime default NULL, -- the date the transfer was initialized |
924 |
`datesent` datetime default NULL, -- the date the transfer was initialized |
924 |
`frombranch` varchar(10) NOT NULL default '', -- the branch the transfer is coming from |
925 |
`frombranch` varchar(10) NOT NULL default '', -- the branch the transfer is coming from |
925 |
`datearrived` datetime default NULL, -- the date the transfer arrived at its destination |
926 |
`datearrived` datetime default NULL, -- the date the transfer arrived at its destination |
926 |
- |
|
|