Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MyFridge
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Rosemary
MyFridge
Commits
8a07f035
Commit
8a07f035
authored
6 years ago
by
-
Browse files
Options
Downloads
Patches
Plain Diff
DB
parent
8e8eab1f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
myfridge.sql
+99
-0
99 additions, 0 deletions
myfridge.sql
with
99 additions
and
0 deletions
myfridge.sql
0 → 100644
+
99
−
0
View file @
8a07f035
-- phpMyAdmin SQL Dump
-- version 4.8.4
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Jan 26, 2019 at 08:04 PM
-- Server version: 10.1.37-MariaDB
-- PHP Version: 7.1.26
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: `myfridge`
--
-- --------------------------------------------------------
--
-- Table structure for table `messages`
--
CREATE
TABLE
`messages`
(
`mes_id`
int
(
11
)
NOT
NULL
,
`message`
text
NOT
NULL
,
`user`
varchar
(
128
)
NOT
NULL
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
latin1
;
--
-- Dumping data for table `messages`
--
INSERT
INTO
`messages`
(
`mes_id`
,
`message`
,
`user`
)
VALUES
(
1
,
'I like Pokemon'
,
'Da Man'
),
(
2
,
'Chicken'
,
'yo'
),
(
3
,
'Chicken'
,
'beep'
),
(
5
,
'Chicken'
,
'beep'
),
(
6
,
'Chicken'
,
'beep'
),
(
7
,
'Chicken'
,
'beep'
),
(
8
,
'Chicken'
,
'beep'
),
(
9
,
'Chicken'
,
'Fwa'
);
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE
TABLE
`users`
(
`user_id`
int
(
11
)
NOT
NULL
,
`username`
varchar
(
32
)
NOT
NULL
,
`password`
varchar
(
64
)
NOT
NULL
,
`email`
varchar
(
128
)
NOT
NULL
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
latin1
;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `messages`
--
ALTER
TABLE
`messages`
ADD
PRIMARY
KEY
(
`mes_id`
);
--
-- Indexes for table `users`
--
ALTER
TABLE
`users`
ADD
PRIMARY
KEY
(
`user_id`
);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `messages`
--
ALTER
TABLE
`messages`
MODIFY
`mes_id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
AUTO_INCREMENT
=
10
;
--
-- AUTO_INCREMENT for table `users`
--
ALTER
TABLE
`users`
MODIFY
`user_id`
int
(
11
)
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 */
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment