1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-27 13:34:28 +00:00
royalnet/rpgpack/tables/dndbattle.py

20 lines
424 B
Python
Raw Normal View History

2020-02-18 22:56:55 +00:00
from sqlalchemy import *
from sqlalchemy.orm import *
from sqlalchemy.ext.declarative import declared_attr
class DndBattle:
__tablename__ = "dndbattle"
@declared_attr
def id(self):
return Column(Integer, primary_key=True)
@declared_attr
def name(self):
return Column(String, nullable=False)
@declared_attr
def description(self):
return Column(String, nullable=False)