mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-03 01:41:05 -05:00
Add timestamp columns to ft_billing table
Added `created_at` and `updated_at` to the `ft_billing` table - having these columns makes it easier to track down issues with the data in this table. `created_at` is nullable initially, but will be changed to non-nullable once the column is populated and the DAO etc. have been updated.
This commit is contained in:
23
migrations/versions/0193_add_ft_billing_timestamps.py
Normal file
23
migrations/versions/0193_add_ft_billing_timestamps.py
Normal file
@@ -0,0 +1,23 @@
|
||||
"""
|
||||
|
||||
Revision ID: 0193_add_ft_billing_timestamps
|
||||
Revises: 0192_drop_provider_statistics
|
||||
Create Date: 2018-05-22 10:23:21.937262
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
revision = '0193_add_ft_billing_timestamps'
|
||||
down_revision = '0192_drop_provider_statistics'
|
||||
|
||||
|
||||
def upgrade():
|
||||
op.add_column('ft_billing', sa.Column('updated_at', sa.DateTime(), nullable=True))
|
||||
op.add_column('ft_billing', sa.Column('created_at', sa.DateTime(), nullable=True))
|
||||
|
||||
|
||||
def downgrade():
|
||||
op.drop_column('ft_billing', 'created_at')
|
||||
op.drop_column('ft_billing', 'updated_at')
|
||||
Reference in New Issue
Block a user