bee.osql.mid_typing

class Column:
Column(type_, primary_key=False, unique=False, nullable=True)
type
primary_key
unique
nullable
name
class Integer:
class SmallInteger:
class BigInteger:
class Boolean:
class String:
String(length=None)
length
class Text:
class JSON:
class DateTime:
class Date:
class Time:
class Float:
class Numeric:
Numeric(precision, scale)
precision
scale
DECIMAL = <class 'Numeric'>
SMALLINT = <class 'SmallInteger'>
class REAL: