added congress data to database

This commit is contained in:
2026-03-09 14:03:35 -04:00
parent 75a67294ea
commit 3dadb145b7
3 changed files with 290 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
from __future__ import annotations
from python.orm.richie.base import RichieBase, TableBase
from python.orm.richie.congress import Bill, Legislator, Vote, VoteRecord
from python.orm.richie.contact import (
Contact,
ContactNeed,
@@ -12,11 +13,15 @@ from python.orm.richie.contact import (
)
__all__ = [
"Bill",
"Contact",
"ContactNeed",
"ContactRelationship",
"Legislator",
"Need",
"RelationshipType",
"RichieBase",
"TableBase",
"Vote",
"VoteRecord",
]