Parce que «Ça peut toujours servir»™ et que de toutes façons il y en a déjà des bouts qui sont dans le dépôt et que c'est chiant de git add -f.
Et puis bon, ça fait que 3Mo
This commit is contained in:
parent
29f50c2ed9
commit
3bde363deb
299 changed files with 17466 additions and 0 deletions
12
archive/bdd/local.py
Normal file
12
archive/bdd/local.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from sqlobject import *
|
||||
|
||||
class Local(SQLObject):
|
||||
|
||||
nom = StringCol(unique=True)
|
||||
proprio = ForeignKey('Proprio')
|
||||
batiment = ForeignKey('Batiment')
|
||||
|
||||
class Batiment(SQLObject):
|
||||
|
||||
nom = StringCol(unique=True)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue