-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #201 from guydavis/integration
v0.5.1
- Loading branch information
Showing
47 changed files
with
1,995 additions
and
436 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.5.0 | ||
0.5.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
"""empty message | ||
Revision ID: bdfe8db75307 | ||
Revises: 51f75e96b994 | ||
Create Date: 2021-07-14 16:11:24.451771 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
from sqlalchemy.sql import func | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = 'bdfe8db75307' | ||
down_revision = '51f75e96b994' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(engine_name): | ||
globals()["upgrade_%s" % engine_name]() | ||
|
||
|
||
def downgrade(engine_name): | ||
globals()["downgrade_%s" % engine_name]() | ||
|
||
|
||
|
||
|
||
|
||
def upgrade_(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
op.drop_table('plots') | ||
op.create_table('plots', | ||
sa.Column('hostname', sa.String(length=255), primary_key=True), | ||
sa.Column('plot_id', sa.String(length=16), primary_key=True), | ||
sa.Column('dir', sa.String(length=255), nullable=False), | ||
sa.Column('file', sa.String(length=255), nullable=False), | ||
sa.Column('size', sa.Integer, nullable=False), | ||
sa.Column('created_at', sa.String(length=64), nullable=False), | ||
sa.Column('updated_at', sa.DateTime(), onupdate=func.now()), | ||
sa.PrimaryKeyConstraint('hostname', 'plot_id') | ||
) | ||
# ### end Alembic commands ### | ||
|
||
|
||
def downgrade_(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
op.drop_table('plots') | ||
op.create_table('plots', | ||
sa.Column('plot_id', sa.String(length=16), primary_key=True), | ||
sa.Column('hostname', sa.String(length=255), nullable=False), | ||
sa.Column('dir', sa.String(length=255), nullable=False), | ||
sa.Column('file', sa.String(length=255), nullable=False), | ||
sa.Column('size', sa.Integer, nullable=False), | ||
sa.Column('created_at', sa.String(length=64), nullable=False), | ||
sa.Column('updated_at', sa.DateTime(), onupdate=func.now()), | ||
sa.PrimaryKeyConstraint('plot_id') | ||
) | ||
# ### end Alembic commands ### | ||
|
||
|
||
def upgrade_stats(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
pass | ||
# ### end Alembic commands ### | ||
|
||
|
||
def downgrade_stats(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
pass | ||
# ### end Alembic commands ### | ||
|
||
|
||
def upgrade_chiadog(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
pass | ||
# ### end Alembic commands ### | ||
|
||
|
||
def downgrade_chiadog(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
pass | ||
# ### end Alembic commands ### | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.