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