Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fltrail
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
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
fides
fltrail
Commits
b235cb9a
Commit
b235cb9a
authored
7 years ago
by
Axel
Browse files
Options
Downloads
Patches
Plain Diff
dbscheme is added
parent
65683352
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dbschema/fltrail(1).sql
+43
-0
43 additions, 0 deletions
dbschema/fltrail(1).sql
studentview/.idea/workspace.xml
+3
-3
3 additions, 3 deletions
studentview/.idea/workspace.xml
with
46 additions
and
3 deletions
dbschema/fltrail(1).sql
0 → 100644
+
43
−
0
View file @
b235cb9a
SET
SQL_MODE
=
"NO_AUTO_VALUE_ON_ZERO"
;
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 */
;
CREATE
DATABASE
IF
NOT
EXISTS
`fltrail`
DEFAULT
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
;
USE
`fltrail`
;
CREATE
TABLE
`projects`
(
`id`
varchar
(
400
)
NOT
NULL
,
`password`
varchar
(
400
)
NOT
NULL
,
`activ`
tinyint
(
1
)
NOT
NULL
,
`timecreated`
timestamp
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
ON
UPDATE
CURRENT_TIMESTAMP
,
`author`
varchar
(
400
)
NOT
NULL
,
`adminpassword`
varchar
(
400
)
NOT
NULL
,
`token`
varchar
(
400
)
NOT
NULL
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
;
CREATE
TABLE
`tags`
(
`projectId`
varchar
(
400
)
NOT
NULL
,
`tag`
varchar
(
400
)
NOT
NULL
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
;
CREATE
TABLE
`users`
(
`name`
varchar
(
400
)
NOT
NULL
,
`password`
varchar
(
200
)
NOT
NULL
,
`email`
varchar
(
400
)
NOT
NULL
,
`token`
varchar
(
800
)
NOT
NULL
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
;
INSERT
INTO
`users`
(
`name`
,
`password`
,
`email`
,
`token`
)
VALUES
(
'Axel Wiepke'
,
'password'
,
'wiepke@uni.de'
,
'5ab0f28f75d23'
);
ALTER
TABLE
`users`
ADD
UNIQUE
KEY
`password`
(
`password`
);
/*!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.
studentview/.idea/workspace.xml
+
3
−
3
View file @
b235cb9a
...
...
@@ -508,15 +508,15 @@
<workItem
from=
"1521190416377"
duration=
"1355000"
/>
<workItem
from=
"1521440534915"
duration=
"760000"
/>
<workItem
from=
"1521447873243"
duration=
"9916000"
/>
<workItem
from=
"1521528114036"
duration=
"1
0928
000"
/>
<workItem
from=
"1521528114036"
duration=
"1
1345
000"
/>
</task>
<servers
/>
</component>
<component
name=
"TimeTrackingManager"
>
<option
name=
"totallyTimeSpent"
value=
"137
543
000"
/>
<option
name=
"totallyTimeSpent"
value=
"137
960
000"
/>
</component>
<component
name=
"ToolWindowManager"
>
<frame
x=
"-359"
y=
"-1449"
width=
"2578"
height=
"1458"
extended-state=
"
7
"
/>
<frame
x=
"-359"
y=
"-1449"
width=
"2578"
height=
"1458"
extended-state=
"
6
"
/>
<editor
active=
"true"
/>
<layout>
<window_info
id=
"Project"
active=
"false"
anchor=
"left"
auto_hide=
"false"
internal_type=
"DOCKED"
type=
"DOCKED"
visible=
"true"
show_stripe_button=
"true"
weight=
"0.19765624"
sideWeight=
"0.5"
order=
"0"
side_tool=
"false"
content_ui=
"combo"
/>
...
...
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