Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
notifications-bot
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
archives
notifications-bot
Merge requests
!14
Fix relationship from users to ephemerals
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Fix relationship from users to ephemerals
hotfix/unique
into
release
Overview
1
Commits
3
Pipelines
0
Changes
1
1 open thread
Hide all comments
Merged
Fix relationship from users to ephemerals
Jonah Husson
requested to merge
hotfix/unique
into
release
Oct 25, 2021
Overview
1
Commits
3
Pipelines
0
Changes
1
1 open thread
Hide all comments
0
0
Merge request reports
Compare
release
version 2
186bac1a
Oct 25, 2021
version 1
df9bf161
Oct 25, 2021
release (base)
and
version 1
latest version
203acc3f
3 commits,
Oct 25, 2021
version 2
186bac1a
2 commits,
Oct 25, 2021
version 1
df9bf161
1 commit,
Oct 25, 2021
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
storage/database.go
+
1
−
1
View file @ df9bf161
Edit in single-file editor
Open in Web IDE
Show full file
@@ -53,7 +53,7 @@ type User struct {
type
Ephemeral
struct
{
ID
uint
`gorm:"primaryKey"`
Offset
int64
`gorm:"not null; index"`
TransmissionRSAHash
[]
byte
`gorm:"not null;
unique;
references users(transmission_rsa_hash)"`
TransmissionRSAHash
[]
byte
`gorm:"not null; references users(transmission_rsa_hash)"`
EphemeralId
int64
`gorm:"not null; index"`
Epoch
int32
`gorm:"not null; index"`
}
Loading