Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
nopaque
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
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
SFB 1288 - INF
nopaque
Commits
f64b6104
Commit
f64b6104
authored
5 years ago
by
Stephan Porada
Browse files
Options
Downloads
Patches
Plain Diff
Add test accounts for email confirmation
parent
11a3e755
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
data_dev.sqlite
+0
-0
0 additions, 0 deletions
data_dev.sqlite
migrations/versions/69f5d9c59c34_.py
+28
-0
28 additions, 0 deletions
migrations/versions/69f5d9c59c34_.py
with
28 additions
and
0 deletions
data_dev.sqlite
+
0
−
0
View file @
f64b6104
No preview for this file type
This diff is collapsed.
Click to expand it.
migrations/versions/69f5d9c59c34_.py
0 → 100644
+
28
−
0
View file @
f64b6104
"""
empty message
Revision ID: 69f5d9c59c34
Revises: 0d4e0dde8ae4
Create Date: 2019-07-08 15:22:12.342890
"""
from
alembic
import
op
import
sqlalchemy
as
sa
# revision identifiers, used by Alembic.
revision
=
'
69f5d9c59c34
'
down_revision
=
'
0d4e0dde8ae4
'
branch_labels
=
None
depends_on
=
None
def
upgrade
():
# ### commands auto generated by Alembic - please adjust! ###
op
.
add_column
(
'
users
'
,
sa
.
Column
(
'
confirmed
'
,
sa
.
Boolean
(),
nullable
=
True
))
# ### end Alembic commands ###
def
downgrade
():
# ### commands auto generated by Alembic - please adjust! ###
op
.
drop_column
(
'
users
'
,
'
confirmed
'
)
# ### end Alembic commands ###
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