Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Static Risk Assessment and Optimization Framework
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
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MEDINA
Public
Static Risk Assessment and Optimization Framework
Commits
f4147fa5
Commit
f4147fa5
authored
1 year ago
by
Stefano Fagnano
Browse files
Options
Downloads
Patches
Plain Diff
updated db dump
parent
f8bcc158
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
db/mysql.sql
+53
-51
53 additions, 51 deletions
db/mysql.sql
db/rat.sql
+12
-18
12 additions, 18 deletions
db/rat.sql
db/survey.sql
+44
-30
44 additions, 30 deletions
db/survey.sql
with
109 additions
and
99 deletions
db/mysql.sql
+
53
−
51
View file @
f4147fa5
This diff is collapsed.
Click to expand it.
db/rat.sql
+
12
−
18
View file @
f4147fa5
-- MySQL dump 10.1
9
Distrib
10.3.29-MariaDB
, for Linux (x86_64)
-- MySQL dump 10.1
3
Distrib
5.7.42
, for Linux (x86_64)
--
--
-- Host:
raof-mysql-svc.dev
Database: rat
-- Host:
localhost
Database: rat
-- ------------------------------------------------------
-- ------------------------------------------------------
-- Server version 5.7.
38
-- Server version 5.7.
42
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */
;
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */
;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */
;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */
;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */
;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */
;
/*!40101 SET NAMES utf8
mb4
*/
;
/*!40101 SET NAMES utf8 */
;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */
;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */
;
/*!40103 SET TIME_ZONE='+00:00' */
;
/*!40103 SET TIME_ZONE='+00:00' */
;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */
;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */
;
...
@@ -16,13 +16,17 @@
...
@@ -16,13 +16,17 @@
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */
;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */
;
--
--
--
Table structure for table `contracts
`
--
Current Database: `rat
`
--
--
CREATE
DATABASE
/*!32312 IF NOT EXISTS*/
`rat`
/*!40100 DEFAULT CHARACTER SET latin1 */
;
CREATE
DATABASE
/*!32312 IF NOT EXISTS*/
`rat`
/*!40100 DEFAULT CHARACTER SET latin1 */
;
USE
`rat`
;
USE
`rat`
;
--
-- Table structure for table `contracts`
--
DROP
TABLE
IF
EXISTS
`contracts`
;
DROP
TABLE
IF
EXISTS
`contracts`
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!40101 SET character_set_client = utf8 */
;
/*!40101 SET character_set_client = utf8 */
;
...
@@ -39,11 +43,6 @@ CREATE TABLE `contracts` (
...
@@ -39,11 +43,6 @@ CREATE TABLE `contracts` (
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
latin1
;
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
latin1
;
/*!40101 SET character_set_client = @saved_cs_client */
;
/*!40101 SET character_set_client = @saved_cs_client */
;
--
-- Dumping data for table `contracts`
--
--
--
-- Table structure for table `users`
-- Table structure for table `users`
--
--
...
@@ -63,15 +62,10 @@ CREATE TABLE `users` (
...
@@ -63,15 +62,10 @@ CREATE TABLE `users` (
`salt`
varchar
(
255
)
DEFAULT
NULL
,
`salt`
varchar
(
255
)
DEFAULT
NULL
,
`source`
varchar
(
32
)
DEFAULT
NULL
,
`source`
varchar
(
32
)
DEFAULT
NULL
,
PRIMARY
KEY
(
`uid`
)
PRIMARY
KEY
(
`uid`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
31
DEFAULT
CHARSET
=
latin1
;
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
78
DEFAULT
CHARSET
=
latin1
;
/*!40101 SET character_set_client = @saved_cs_client */
;
/*!40101 SET character_set_client = @saved_cs_client */
;
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */
;
-- Dumping data for table `users`
--
LOCK
TABLES
`users`
WRITE
;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */
;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */
;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */
;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */
;
...
@@ -81,4 +75,4 @@ LOCK TABLES `users` WRITE;
...
@@ -81,4 +75,4 @@ LOCK TABLES `users` WRITE;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */
;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */
;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */
;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */
;
-- Dump completed on 202
2-08-11 12:00:02
-- Dump completed on 202
3-09-08 7:52:08
This diff is collapsed.
Click to expand it.
db/survey.sql
+
44
−
30
View file @
f4147fa5
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