Passed
Pull Request — dev (#82)
by Stephan
01:10
created

000.2021-01-08T16:37.9b9584efcefd.do_nothing_for_the_base_migration   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 26
rs 10
c 0
b 0
f 0
wmc 2

2 Functions

Rating   Name   Duplication   Size   Complexity  
A downgrade() 0 2 1
A upgrade() 0 2 1
1
"""Do nothing for the base migration
2
3
This migration intentionally does nothing. Downgrading to this revision
4
should reset the database to a clean state or at least undo everything
5
done via Alembic.
6
7
Revision ID: 9b9584efcefd
8
Revises:
9
Create Date: 2021-01-08 16:37:31.238609+00:00
10
11
"""
12
13
# Revision identifiers, used by Alembic.
14
revision = "9b9584efcefd"
15
down_revision = None
16
branch_labels = None
17
depends_on = None
18
19
20
def upgrade():
21
    pass
22
23
24
def downgrade():
25
    pass
26