Compare commits
	
		
			2 commits
		
	
	
		
			8e78cd3253
			...
			2a6dbfacd3
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
							 | 
						2a6dbfacd3 | ||
| 
							 | 
						7dd4eb587b | 
					 3 changed files with 13 additions and 7 deletions
				
			
		| 
						 | 
					@ -5,6 +5,12 @@ 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
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -6,7 +6,7 @@ build-backend = "hatchling.build"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[project]
 | 
					[project]
 | 
				
			||||||
name = "Wutta-Continuum"
 | 
					name = "Wutta-Continuum"
 | 
				
			||||||
version = "0.1.0"
 | 
					version = "0.1.1"
 | 
				
			||||||
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"}]
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -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=False),
 | 
					                    sa.Column('full_name', sa.String(length=100), autoincrement=False, nullable=True),
 | 
				
			||||||
                    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=False),
 | 
					                    sa.Column('username', sa.String(length=25), autoincrement=False, nullable=True),
 | 
				
			||||||
                    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=False),
 | 
					                    sa.Column('active', sa.Boolean(), 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),
 | 
				
			||||||
                    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=False),
 | 
					                    sa.Column('name', sa.String(length=100), autoincrement=False, nullable=True),
 | 
				
			||||||
                    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=False),
 | 
					                    sa.Column('user_uuid', sa.String(length=32), autoincrement=False, nullable=True),
 | 
				
			||||||
                    sa.Column('role_uuid', sa.String(length=32), autoincrement=False, nullable=False),
 | 
					                    sa.Column('role_uuid', sa.String(length=32), 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),
 | 
				
			||||||
                    sa.Column('operation_type', sa.SmallInteger(), nullable=False),
 | 
					                    sa.Column('operation_type', sa.SmallInteger(), nullable=False),
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue