Skip to content

Commit

Permalink
fix: revert changes committed by mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiryous committed Nov 19, 2024
1 parent 34cc798 commit c79d35e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"""

from datetime import datetime
import sqlalchemy as sa
from alembic import op

Expand All @@ -24,7 +23,8 @@ def upgrade() -> None:
sa.Column(
"timestamp",
sa.DateTime(),
nullable=True,
nullable=False,
server_default=sa.text("CURRENT_TIMESTAMP"),
),
)
op.add_column(
Expand Down

0 comments on commit c79d35e

Please sign in to comment.