Compare commits

..

No commits in common. "2a6dbfacd365bb9ea750b8ec81699db27a2410d5" and "8e78cd3253e3deaadf4c020fd216765852e8ad3f" have entirely different histories.

3 changed files with 7 additions and 13 deletions

View file

@ -5,12 +5,6 @@ All notable changes to Wutta-Continuum will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## v0.1.1 (2024-08-27)
### Fix
- fix nullable flags for initial version tables
## v0.1.0 (2024-08-27) ## v0.1.0 (2024-08-27)
### Feat ### Feat

View file

@ -6,7 +6,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "Wutta-Continuum" name = "Wutta-Continuum"
version = "0.1.1" version = "0.1.0"
description = "SQLAlchemy-Continuum versioning for WuttJamaican" description = "SQLAlchemy-Continuum versioning for WuttJamaican"
readme = "README.md" readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}] authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]

View file

@ -34,7 +34,7 @@ def upgrade() -> None:
# person # person
op.create_table('person_version', op.create_table('person_version',
sa.Column('uuid', sa.String(length=32), autoincrement=False, nullable=False), sa.Column('uuid', sa.String(length=32), autoincrement=False, nullable=False),
sa.Column('full_name', sa.String(length=100), autoincrement=False, nullable=True), sa.Column('full_name', sa.String(length=100), autoincrement=False, nullable=False),
sa.Column('first_name', sa.String(length=50), autoincrement=False, nullable=True), sa.Column('first_name', sa.String(length=50), autoincrement=False, nullable=True),
sa.Column('middle_name', sa.String(length=50), autoincrement=False, nullable=True), sa.Column('middle_name', sa.String(length=50), autoincrement=False, nullable=True),
sa.Column('last_name', sa.String(length=50), autoincrement=False, nullable=True), sa.Column('last_name', sa.String(length=50), autoincrement=False, nullable=True),
@ -50,10 +50,10 @@ def upgrade() -> None:
# user # user
op.create_table('user_version', op.create_table('user_version',
sa.Column('uuid', sa.String(length=32), autoincrement=False, nullable=False), sa.Column('uuid', sa.String(length=32), autoincrement=False, nullable=False),
sa.Column('username', sa.String(length=25), autoincrement=False, nullable=True), sa.Column('username', sa.String(length=25), autoincrement=False, nullable=False),
sa.Column('password', sa.String(length=60), autoincrement=False, nullable=True), sa.Column('password', sa.String(length=60), autoincrement=False, nullable=True),
sa.Column('person_uuid', sa.String(length=32), autoincrement=False, nullable=True), sa.Column('person_uuid', sa.String(length=32), autoincrement=False, nullable=True),
sa.Column('active', sa.Boolean(), autoincrement=False, nullable=True), sa.Column('active', sa.Boolean(), autoincrement=False, nullable=False),
sa.Column('transaction_id', sa.BigInteger(), autoincrement=False, nullable=False), sa.Column('transaction_id', sa.BigInteger(), autoincrement=False, nullable=False),
sa.Column('end_transaction_id', sa.BigInteger(), nullable=True), sa.Column('end_transaction_id', sa.BigInteger(), nullable=True),
sa.Column('operation_type', sa.SmallInteger(), nullable=False), sa.Column('operation_type', sa.SmallInteger(), nullable=False),
@ -66,7 +66,7 @@ def upgrade() -> None:
# role # role
op.create_table('role_version', op.create_table('role_version',
sa.Column('uuid', sa.String(length=32), autoincrement=False, nullable=False), sa.Column('uuid', sa.String(length=32), autoincrement=False, nullable=False),
sa.Column('name', sa.String(length=100), autoincrement=False, nullable=True), sa.Column('name', sa.String(length=100), autoincrement=False, nullable=False),
sa.Column('notes', sa.Text(), autoincrement=False, nullable=True), sa.Column('notes', sa.Text(), autoincrement=False, nullable=True),
sa.Column('transaction_id', sa.BigInteger(), autoincrement=False, nullable=False), sa.Column('transaction_id', sa.BigInteger(), autoincrement=False, nullable=False),
sa.Column('end_transaction_id', sa.BigInteger(), nullable=True), sa.Column('end_transaction_id', sa.BigInteger(), nullable=True),
@ -80,8 +80,8 @@ def upgrade() -> None:
# user_x_role # user_x_role
op.create_table('user_x_role_version', op.create_table('user_x_role_version',
sa.Column('uuid', sa.String(length=32), autoincrement=False, nullable=False), sa.Column('uuid', sa.String(length=32), autoincrement=False, nullable=False),
sa.Column('user_uuid', sa.String(length=32), autoincrement=False, nullable=True), sa.Column('user_uuid', sa.String(length=32), autoincrement=False, nullable=False),
sa.Column('role_uuid', sa.String(length=32), autoincrement=False, nullable=True), sa.Column('role_uuid', sa.String(length=32), autoincrement=False, nullable=False),
sa.Column('transaction_id', sa.BigInteger(), autoincrement=False, nullable=False), sa.Column('transaction_id', sa.BigInteger(), autoincrement=False, nullable=False),
sa.Column('end_transaction_id', sa.BigInteger(), nullable=True), sa.Column('end_transaction_id', sa.BigInteger(), nullable=True),
sa.Column('operation_type', sa.SmallInteger(), nullable=False), sa.Column('operation_type', sa.SmallInteger(), nullable=False),