mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
39 lines
881 B
Python
39 lines
881 B
Python
|
from sqlalchemy import Column, \
|
||
|
Text, \
|
||
|
String
|
||
|
from sqlalchemy.dialects.postgresql import UUID
|
||
|
from sqlalchemy.ext.declarative import declared_attr
|
||
|
from royalnet.utils import to_urluuid
|
||
|
|
||
|
|
||
|
class WikiPage:
|
||
|
"""Wiki page properties.
|
||
|
|
||
|
Warning:
|
||
|
Requires PostgreSQL!"""
|
||
|
__tablename__ = "wikipages"
|
||
|
|
||
|
@declared_attr
|
||
|
def page_id(self):
|
||
|
return Column(UUID(as_uuid=True), primary_key=True)
|
||
|
|
||
|
@declared_attr
|
||
|
def title(self):
|
||
|
return Column(String, nullable=False)
|
||
|
|
||
|
@declared_attr
|
||
|
def contents(self):
|
||
|
return Column(Text)
|
||
|
|
||
|
@declared_attr
|
||
|
def format(self):
|
||
|
return Column(String, nullable=False, default="markdown")
|
||
|
|
||
|
@declared_attr
|
||
|
def css(self):
|
||
|
return Column(String)
|
||
|
|
||
|
@property
|
||
|
def page_short_id(self):
|
||
|
return to_urluuid(self.page_id)
|