2 Column
ItsTato edited this page 2024-04-30 00:08:34 -06:00

Class Methods

Method What is this? Arguments Returns
__init__ Class initializer str name, typing.Callable type, any default_value defaults to: "", bool auto_increment defaults to: False, Union[int,float] increment_by defaults to: 1

Class Properties

Property Type Mutable? What is this?
Name str False The name of the column
OfType typing.Callable False What type of value does this column accept?
DefaultValue any False The value assigned to any new rows by default
AutoIncrement bool False Will this column (if an int or a float) increment each row by default?
IncrementBy Union[int,float] False If AutoIncrement, how much should each new row be incremented by?