Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
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 |