Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Eclipse Foundation Profile API
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Eclipse Foundation
IT
APIs
Eclipse Foundation Profile API
Merge requests
!35
feat: Update source and order of data fetching
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat: Update source and order of data fetching
zacharysabourin/eclipsefdn-profile-api:main
into
main
Overview
10
Commits
18
Pipelines
0
Changes
25
Merged
Zachary Sabourin
requested to merge
zacharysabourin/eclipsefdn-profile-api:main
into
main
2 years ago
Overview
4
Commits
18
Pipelines
0
Changes
25
Expand
Resolves
#68 (closed)
0
0
Merge request reports
Compare
main
version 17
2793dfc6
2 years ago
version 16
9f17e52a
2 years ago
version 15
bc8975dc
2 years ago
version 14
d225fc5d
2 years ago
version 13
716b6ec7
2 years ago
version 12
06e920ee
2 years ago
version 11
754e6c75
2 years ago
version 10
573c12db
2 years ago
version 9
5b4c6ddb
2 years ago
version 8
20884fa3
2 years ago
version 7
af3b19c8
2 years ago
version 6
e4774558
2 years ago
version 5
b20b1251
2 years ago
version 4
432f4dfe
2 years ago
version 3
cae2e327
2 years ago
version 2
3b922b07
2 years ago
version 1
f34f2d89
2 years ago
main (base)
and
latest version
latest version
1d996a03
18 commits,
2 years ago
version 17
2793dfc6
17 commits,
2 years ago
version 16
9f17e52a
16 commits,
2 years ago
version 15
bc8975dc
15 commits,
2 years ago
version 14
d225fc5d
14 commits,
2 years ago
version 13
716b6ec7
13 commits,
2 years ago
version 12
06e920ee
12 commits,
2 years ago
version 11
754e6c75
11 commits,
2 years ago
version 10
573c12db
10 commits,
2 years ago
version 9
5b4c6ddb
9 commits,
2 years ago
version 8
20884fa3
8 commits,
2 years ago
version 7
af3b19c8
7 commits,
2 years ago
version 6
e4774558
6 commits,
2 years ago
version 5
b20b1251
5 commits,
2 years ago
version 4
432f4dfe
4 commits,
2 years ago
version 3
cae2e327
3 commits,
2 years ago
version 2
3b922b07
2 commits,
2 years ago
version 1
f34f2d89
1 commit,
2 years ago
25 files
+
732
−
539
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
25
Search (e.g. *.vue) (Ctrl+P)
config/mariadb/main/init.d/init.sql
+
1
−
14
Options
CREATE
DATABASE
eclipse
;
CREATE
DATABASE
eclipse
;
USE
eclipse
;
USE
eclipse
;
-- eclipse.friends definition
-- eclipse.account_requests definition
CREATE
TABLE
`friends`
(
`friend_id`
int
(
10
)
unsigned
NOT
NULL
AUTO_INCREMENT
,
`bugzilla_id`
int
(
10
)
unsigned
DEFAULT
NULL
,
`date_joined`
datetime
NOT
NULL
,
`is_anonymous`
tinyint
(
3
)
unsigned
NOT
NULL
DEFAULT
0
,
`first_name`
varchar
(
255
)
NOT
NULL
,
`last_name`
varchar
(
255
)
NOT
NULL
,
`is_benefit`
tinyint
(
3
)
unsigned
NOT
NULL
DEFAULT
0
,
`uid`
varchar
(
60
)
DEFAULT
NULL
,
PRIMARY
KEY
(
`friend_id`
),
KEY
`bugzilla_id`
(
`bugzilla_id`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
46942
DEFAULT
CHARSET
=
latin1
;
CREATE
TABLE
`account_requests`
(
CREATE
TABLE
`account_requests`
(
`email`
varchar
(
100
)
NOT
NULL
,
`email`
varchar
(
100
)
NOT
NULL
,
Loading