Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 2b3e237

Browse files
Create acounts.sql
1 parent 00d4fad commit 2b3e237

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed

‎acounts.sql‎

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
-- phpMyAdmin SQL Dump
2+
-- version 4.2.12deb2+deb8u1
3+
-- http://www.phpmyadmin.net
4+
--
5+
-- Host: localhost
6+
-- Generation Time: Feb 17, 2017 at 06:06 PM
7+
-- Server version: 5.5.47-0+deb7u1
8+
-- PHP Version: 5.4.45-0+deb7u2
9+
10+
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11+
SET time_zone = "+00:00";
12+
13+
14+
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
15+
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
16+
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
17+
/*!40101 SET NAMES utf8 */;
18+
19+
--
20+
-- Database: `testupload`
21+
--
22+
23+
-- --------------------------------------------------------
24+
25+
--
26+
-- Table structure for table `accounts`
27+
--
28+
29+
CREATE TABLE IF NOT EXISTS `accounts` (
30+
`id` bigint(20) NOT NULL,
31+
`first` varchar(300) NOT NULL,
32+
`last` varchar(300) NOT NULL,
33+
`email` varchar(300) NOT NULL,
34+
`uploaded_file` varchar(300) NOT NULL
35+
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
36+
37+
--
38+
-- Indexes for dumped tables
39+
--
40+
41+
--
42+
-- Indexes for table `accounts`
43+
--
44+
ALTER TABLE `accounts`
45+
ADD PRIMARY KEY (`id`);
46+
47+
--
48+
-- AUTO_INCREMENT for dumped tables
49+
--
50+
51+
--
52+
-- AUTO_INCREMENT for table `accounts`
53+
--
54+
ALTER TABLE `accounts`
55+
MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
56+
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
57+
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
58+
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /