10 lines
299 B
Python
10 lines
299 B
Python
# models/orders/expulsion.py
|
|
from ..order import AbstractOrder
|
|
from sqlalchemy.orm import relationship
|
|
|
|
|
|
class ExpulsionOrder(AbstractOrder):
|
|
__tablename__ = "expulsion_orders"
|
|
|
|
students = relationship("Student", secondary="expulsion_student_association")
|
|
dean = relationship("Dean") |