piccolo
piccolo copied to clipboard
Feature: Abstract Tables
Implementing abstract tables to avoid repeating columns for the tables. Obviously the abstract tables are ignored in automatic migrations. It would be something like this:
class Base(Table, abstract=True):
created_at = Date()
class Band(Base):
name = Varchar()