piccolo icon indicating copy to clipboard operation
piccolo copied to clipboard

Feature: Abstract Tables

Open aminalaee opened this issue 4 years ago • 0 comments

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()

aminalaee avatar Aug 06 '21 05:08 aminalaee