Item Adjustment
Item Adjustment
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Mar 04, 2025 at 05:52 PM
-- Server version: 10.11.10-MariaDB
-- PHP Version: 7.2.34
--
-- Database: `u650672385_PhoneMate`
--
-- --------------------------------------------------------
--
-- Table structure for table `item_adjustment`
--
--
-- Dumping data for table `item_adjustment`
--
--
-- Indexes for table `item_adjustment`
--
ALTER TABLE `item_adjustment`
ADD PRIMARY KEY (`item_adj_id`),
ADD KEY `fk_item_adjustment_item_id` (`fk_item_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `item_adjustment`
--
ALTER TABLE `item_adjustment`
MODIFY `item_adj_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `item_adjustment`
--
ALTER TABLE `item_adjustment`
ADD CONSTRAINT `fk_item_adjustment_item_id` FOREIGN KEY (`fk_item_id`) REFERENCES
`items` (`item_id`);
COMMIT;