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:
Vincent Le Gallic 2013-05-08 05:49:55 +02:00
parent 29f50c2ed9
commit 3bde363deb
299 changed files with 17466 additions and 0 deletions

12
archive/bdd/local.py Normal file
View 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)