forked from JB4u3r/JMT-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlicensing.sql
More file actions
executable file
·52 lines (43 loc) · 995 Bytes
/
licensing.sql
File metadata and controls
executable file
·52 lines (43 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
-- phpMyAdmin SQL Dump
-- version 4.4.10
-- http://www.phpmyadmin.net
--
-- Host: localhost:8889
-- Generation Time: Nov 10, 2017 at 12:37 PM
-- Server version: 5.5.42-log
-- PHP Version: 7.0.8
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Database: `license`
--
-- --------------------------------------------------------
--
-- Table structure for table `details`
--
CREATE TABLE `details` (
`id` int(11) NOT NULL,
`name` varchar(20) NOT NULL,
`surname` varchar(30) NOT NULL,
`book` varchar(11) NOT NULL,
`plate` varchar(11) NOT NULL,
`month` varchar(11) NOT NULL,
`address` varchar(200) NOT NULL,
`payment` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `details`
--
ALTER TABLE `details`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `details`
--
ALTER TABLE `details`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;