12 lines
318 B
Python
12 lines
318 B
Python
# utils/db/regions.py
|
|
|
|
from sqlalchemy import Column, String, Boolean
|
|
from utils.db import Base
|
|
|
|
class Region(Base):
|
|
__tablename__ = 'regions'
|
|
|
|
region_id = Column(String, primary_key=True, unique=True, nullable=False)
|
|
region_name = Column(String, nullable=False)
|
|
active = Column(Boolean, default=True)
|