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