Explorar el Código

add lang and character

tomoya hace 2 años
padre
commit
797ffc393e
Se han modificado 2 ficheros con 12 adiciones y 0 borrados
  1. 6 0
      backend/app/app/models/character.py
  2. 6 0
      backend/app/app/models/lang.py

+ 6 - 0
backend/app/app/models/character.py

@@ -0,0 +1,6 @@
+from typing import TYPE_CHECKING
+
+from sqlalchemy import Column, ForeignKey, Integer, String
+from sqlalchemy.orm import relationship
+
+from app.db.base_class import Base

+ 6 - 0
backend/app/app/models/lang.py

@@ -0,0 +1,6 @@
+from typing import TYPE_CHECKING
+
+from sqlalchemy import Column, ForeignKey, Integer, String
+from sqlalchemy.orm import relationship
+
+from app.db.base_class import Base