-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
featureGroup together issues making up a full feature. It creates a parent-child relation with its issues.Group together issues making up a full feature. It creates a parent-child relation with its issues.
Milestone
Description
Add the capability to drop tables via DDL statements:
students = Table('students', ...)
stmt = DropTable(students)
with engine.connect() as connection:
connection.execute(stmt)normlite has two representations of the same logical table:
- The user-facing Notion database (actual data)
- The system tables row (metadata / catalog)
These two objects are logically inseparable.
Dropping a table must transition both representations into the “dropped” state.
Consider the following rule to enforce:
There must be exactly one place in the codebase that transitions a table into the dropped state.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
featureGroup together issues making up a full feature. It creates a parent-child relation with its issues.Group together issues making up a full feature. It creates a parent-child relation with its issues.
Projects
Status
Done