Skip to content

Commit

Permalink
Remove native_tx_id column
Browse files Browse the repository at this point in the history
  • Loading branch information
kvesteri committed Oct 1, 2014
1 parent c624bbd commit e642863
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions sqlalchemy_continuum/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,6 @@ class Transaction(
autoincrement=True
)

if manager.options['native_versioning']:
native_tx_id = sa.Column(
sa.types.BigInteger,
index=True
)

if self.remote_addr:
remote_addr = sa.Column(sa.String(50))

Expand Down
1 change: 0 additions & 1 deletion sqlalchemy_continuum/unit_of_work.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from copy import copy

import sqlalchemy as sa
from sqlalchemy.orm.attributes import set_committed_value
from sqlalchemy_utils import get_primary_keys, identity
from .operation import Operations
from .utils import (
Expand Down

0 comments on commit e642863

Please sign in to comment.