Compare commits

..

No commits in common. "c3a7ff8e4ca5d66b40ea9d15205aa70dd1bba9d9" and "4de765ef627bfc287ba9d306ff7cf91f8a832c66" have entirely different histories.

1 changed files with 0 additions and 34 deletions

View File

@ -1,34 +0,0 @@
from sqlalchemy.ext.asyncio import AsyncSession
from database.engine import DBSession
from database.schemas import UforaCourse
__all__ = ["main"]
async def main():
"""Add the Bachelor and Master infosites, and log announcements"""
session: AsyncSession
async with DBSession() as session:
bsc = UforaCourse(
course_id=77068,
code="INFOSITE-BSC",
name="INFOSITE Bachelor of Science in de Informatica",
year=6,
compulsory=True,
role_id=None,
log_announcements=True,
)
msc = UforaCourse(
course_id=77206,
code="INFOSITE-MSC",
name="INFOSITE Master of Science in de Informatica",
year=6,
compulsory=True,
role_id=None,
log_announcements=True,
)
session.add_all([bsc, msc])
await session.commit()