Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
projet-cdaw
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Quentin Vrel
projet-cdaw
Commits
2f87aafb
Commit
2f87aafb
authored
Nov 24, 2020
by
Zohten
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved
parent
e66ffa47
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
70 deletions
+0
-70
createDB.sql
BackEnd/src/sql/createDB.sql
+0
-70
sample.sql
BackEnd/src/sql/sample.sql
+0
-0
No files found.
BackEnd/src/sql/createDB.sql
deleted
100644 → 0
View file @
e66ffa47
-- phpMyAdmin SQL Dump
-- version 5.0.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Nov 13, 2020 at 05:47 PM
-- Server version: 10.4.14-MariaDB
-- PHP Version: 7.4.11
SET
SQL_MODE
=
"NO_AUTO_VALUE_ON_ZERO"
;
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: `dbtest`
--
-- --------------------------------------------------------
--
-- Table structure for table `USER`
--
CREATE
TABLE
`USER`
(
`USER_ID`
int
(
11
)
NOT
NULL
,
`USER_LOGIN`
varchar
(
55
)
NOT
NULL
,
`USER_EMAIL`
varchar
(
100
)
NOT
NULL
,
`USER_ROLE`
varchar
(
100
)
NOT
NULL
,
`USER_PWD`
varchar
(
100
)
NOT
NULL
,
`USER_NAME`
varchar
(
55
)
NOT
NULL
,
`USER_SURNAME`
varchar
(
55
)
NOT
NULL
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8mb4
;
--
-- Dumping data for table `USER`
--
INSERT
INTO
`USER`
(
`USER_ID`
,
`USER_LOGIN`
,
`USER_EMAIL`
,
`USER_ROLE`
,
`USER_PWD`
,
`USER_NAME`
,
`USER_SURNAME`
)
VALUES
(
1
,
'qvrel'
,
'qvrel@mail.fr'
,
'Admin'
,
'123456'
,
'Quentin'
,
'Vrel'
);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `USER`
--
ALTER
TABLE
`USER`
ADD
PRIMARY
KEY
(
`USER_ID`
);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `USER`
--
ALTER
TABLE
`USER`
MODIFY
`USER_ID`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
AUTO_INCREMENT
=
2
;
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 */
;
\ No newline at end of file
BackEnd/src/sql/sample.sql
deleted
100644 → 0
View file @
e66ffa47
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment