0% found this document useful (0 votes)
82 views6 pages

SQL Sales Management

This SQL dump file defines the structure and initial data for several tables in a database called 1410inventory. It includes tables for admin users, event logging, inventory items, user sessions, and sales transactions. Primary keys are defined for each table and indexes are added to optimize queries.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
82 views6 pages

SQL Sales Management

This SQL dump file defines the structure and initial data for several tables in a database called 1410inventory. It includes tables for admin users, event logging, inventory items, user sessions, and sales transactions. Primary keys are defined for each table and indexes are added to optimize queries.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

phpMyAdmi

n SQL
Dump
-- version 4.7.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Nov 02, 2018 at 04:44 PM
-- Server version: 10.1.22-MariaDB
-- PHP Version: 7.1.4

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";


SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;


/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `1410inventory`
--

-- --------------------------------------------------------

--
-- Table structure for table `admin`
--

CREATE TABLE `admin` (


`id` int(3) NOT NULL,
`first_name` varchar(25) NOT NULL,
`last_name` varchar(25) NOT NULL,
`email` varchar(255) NOT NULL,
`mobile1` varchar(15) NOT NULL,
`mobile2` varchar(15) NOT NULL,
`password` char(60) NOT NULL,
`role` char(5) NOT NULL,
`created_on` datetime NOT NULL,
`last_login` datetime NOT NULL,
`last_seen` datetime NOT NULL,
`last_edited` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE
CURRENT_TIMESTAMP,
`account_status` char(1) NOT NULL DEFAULT '1',
`deleted` char(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `admin`
--

INSERT INTO `admin` (`id`, `first_name`, `last_name`, `email`, `mobile1`,


`mobile2`, `password`, `role`, `created_on`, `last_login`, `last_seen`,
`last_edited`, `account_status`, `deleted`) VALUES
(1, 'Admin', 'Demo', '[email protected]', '08021111111', '07032222222',
'$2y$10$xv9I14OlR36kPCjlTv.wEOX/6Dl7VMuWCl4vCxAVWP1JwYIaw4J2C', 'Super',
'2017-01-04 22:19:16', '2018-05-18 16:47:21', '2018-05-18 17:28:09', '2018-05-
18 16:28:09', '1', '0');

-- --------------------------------------------------------

--
-- Table structure for table `eventlog`
--

CREATE TABLE `eventlog` (


`id` bigint(20) UNSIGNED NOT NULL,
`event` varchar(200) NOT NULL,
`eventRowIdOrRef` varchar(20) DEFAULT NULL,
`eventDesc` text,
`eventTable` varchar(20) DEFAULT NULL,
`staffInCharge` bigint(20) UNSIGNED NOT NULL,
`eventTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE
CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `items`
--

CREATE TABLE `items` (


`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(50) NOT NULL,
`code` varchar(50) NOT NULL,
`description` text,
`unitPrice` decimal(10,2) NOT NULL,
`quantity` int(6) NOT NULL,
`dateAdded` datetime NOT NULL,
`lastUpdated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE
CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `lk_sess`
--

CREATE TABLE `lk_sess` (


`id` varchar(40) NOT NULL,
`ip_address` varchar(45) NOT NULL,
`timestamp` int(10) UNSIGNED NOT NULL DEFAULT '0',
`data` blob NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------

--
-- Table structure for table `transactions`
--

CREATE TABLE `transactions` (


`transId` bigint(20) UNSIGNED NOT NULL,
`ref` varchar(10) NOT NULL,
`itemName` varchar(50) NOT NULL,
`itemCode` varchar(50) NOT NULL,
`description` text,
`quantity` int(6) NOT NULL,
`unitPrice` decimal(10,2) NOT NULL,
`totalPrice` decimal(10,2) NOT NULL,
`totalMoneySpent` decimal(10,2) NOT NULL,
`amountTendered` decimal(10,2) NOT NULL,
`discount_amount` decimal(10,2) NOT NULL,
`discount_percentage` decimal(10,2) NOT NULL,
`vatPercentage` decimal(10,2) NOT NULL,
`vatAmount` decimal(10,2) NOT NULL,
`changeDue` decimal(10,2) NOT NULL,
`modeOfPayment` varchar(20) NOT NULL,
`cust_name` varchar(20) DEFAULT NULL,
`cust_phone` varchar(15) DEFAULT NULL,
`cust_email` varchar(50) DEFAULT NULL,
`transType` char(1) NOT NULL,
`staffId` bigint(20) UNSIGNED NOT NULL,
`transDate` datetime NOT NULL,
`lastUpdated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE
CURRENT_TIMESTAMP,
`cancelled` char(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `admin`
--
ALTER TABLE `admin`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `email` (`email`),
ADD UNIQUE KEY `mobile1` (`mobile1`);

--
-- Indexes for table `eventlog`
--
ALTER TABLE `eventlog`
ADD PRIMARY KEY (`id`);

--
-- Indexes for table `items`
--
ALTER TABLE `items`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `name` (`name`),
ADD UNIQUE KEY `code` (`code`);

--
-- Indexes for table `transactions`
--
ALTER TABLE `transactions`
ADD PRIMARY KEY (`transId`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `admin`
--
ALTER TABLE `admin`
MODIFY `id` int(3) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `eventlog`
--
ALTER TABLE `eventlog`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `items`
--
ALTER TABLE `items`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `transactions`
--
ALTER TABLE `transactions`
MODIFY `transId` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;


/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

You might also like