Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
clojure-web-application
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
Show more breadcrumbs
Dmytro Zaporozhets (DZ)
clojure-web-application
Merge requests
!22
User avatar upload
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
User avatar upload
user-avatar-upload
into
main
Overview
0
Commits
6
Pipelines
5
Changes
4
Merged
Dmytro Zaporozhets (DZ)
requested to merge
user-avatar-upload
into
main
2 years ago
Overview
0
Commits
6
Pipelines
5
Changes
4
Expand
0
0
Merge request reports
Viewing commit
b446cc48
Prev
Next
Show latest version
4 files
+
11
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
b446cc48
Fix creation and display
· b446cc48
Dmytro Zaporozhets (DZ)
authored
2 years ago
resources/migrations/20221029113225-create-avatars-table.up.sql
+
1
−
1
Options
CREATE
TABLE
IF
NOT
EXISTS
avatars
(
id
SERIAL
PRIMARY
KEY
,
name
varchar
(
255
)
NOT
NULL
,
user_id
integer
NOT
NULL
UNIQUE
,
user_id
integer
NOT
NULL
,
timestamp
timestamp
DEFAULT
current_timestamp
);
Loading