1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
|
Adresse:
actAs: { Timestampable: ~ }
columns:
id:
type: integer
autoincrement: true
primary: true
rue: { type: string(500) }
codePostal: { type: string(10) }
localite: { type: string(255) }
pays: { type: string(255) }
url: { type: string(255) }
telephone: { type: string(255) }
gsm: { type: string(255) }
fax: { type: string(255) }
BasketObject:
actAs: { Timestampable: ~ }
columns:
id:
type: integer
autoincrement: true
primary: true
produit_id: { type: integer }
commande_id { type: integer }
quantite: { type: integer }
reduction: { type: integer }
relations:
Produit:
local: produit_id
foreign: id
foreignAlias: Produit
Commande:
local: commande_id
foreign: id
foreignAlias: Commande
Commande:
actAs: { Timestampable: ~ }
columns:
id:
type: integer
autoincrement: true
primary: true
client_id: { type: integer }
quantite: { type: integer }
reduction: { type: integer }
relations:
Client:
local: client_id
foreign: id
foreignAlias: Client
WishlistItem:
actAs: { Timestampable: ~ }
columns:
id:
type: integer
autoincrement: true
primary: true
produit_id: { type: integer }
client_id: { type: integer }
relations:
Produit:
local: produit_id
foreign: id
foreignAlias: Produit
Client:
local: client_id
foreign: id
foreignAlias: Client
Client:
actAs: { Timestampable: ~ }
columns:
id:
type: integer
autoincrement: true
primary: true
adresse_id: { type: integer }
societe: { type: string(255) }
numTVA: { type: string(255) }
relations:
Adresse:
local: adresse_id
foreign: id
foreignAlias: Adresse
Artisan:
actAs:
Timestampable: ~
I18n:
fields: [description, metaKeyword]
columns:
id:
type: integer
autoincrement: true
primary: true
banqueNom: { type: string(255) }
banqueBIC: { type: string(255) }
banqueIBAN: { type: string(255) }
is_valid: { type: boolean, notnull: true, default: 0 }
abonnement_id: { type: integer, notnull: true }
abonnementActif: { type: boolean, notnull: true, default: 0 }
description: { type: clob, notnull: true }
photo: { type: string(255) }
video: { type: string(255) }
metaKeyword: { type: string(255) }
adresse_id: { type: integer }
societe: { type: string(255) }
activite: { type: string(255) }
numTVA: { type: string(255) }
relations:
Metier:
class: Metier
local: artisan_id
foreign: metier_id
refClass: ArtisanMetier
Abonnement:
local: abonnement_id
foreign: id
foreignAlias: Abonnement
Adresse:
local: adresse_id
foreign: id
foreignAlias: Adresse
Metier:
actAs:
Timestampable: ~
I18n:
fields: [libelle, description, metaKeyword]
columns:
id:
type: integer
autoincrement: true
primary: true
libelle: { type: string(255), notnull: true }
photo: { type: string(255) }
video: { type: string(255) }
description: { type: clob }
metaKeyword: { type: string(255) }
relations:
Artisan:
class: Artisan
local: metier_id
foreign: artisan_id
refClass: ArtisanMetier
onDelete: CASCADE
ArtisanMetier:
columns:
artisan_id:
type: integer
primary: true
metier_id:
type: integer
primary: true
indexes:
fk_ArtisanMetier_artisan1:
fields: [artisan_id]
fk_ArtisanMetier_metier1:
fields: [metier_id]
Produit:
actAs:
Timestampable: ~
I18n:
fields: [libelle, description, metaKeyword]
columns:
id:
type: integer
autoincrement: true
primary: true
categorie_id: { type: integer }
artisan_id: { type: integer, notnull: true }
libelle: { type: string(255) }
prix: { type: decimal }
promoDate: { type: datetime }
promoPrix: { type: decimal }
delaisRealisation: { type: timestamp }
description: { type: clob }
metaKeyword: { type: clob}
photo: { type: string(255) }
relations:
Categorie:
local: categorie_id
foreign: id
foreignAlias: Categorie
Artisan:
local: artisan_id
foreign: id
foreignAlias: Artisan
Categorie:
actAs:
Timestampable: ~
I18n:
fields: [libelle, description, metaKeyword]
columns:
id:
type: integer
autoincrement: true
primary: true
libelle: { type: string(255), notnull: true }
description: { type: clob }
metaKeyword: { type: string(255)}
relations:
Stage:
class: Stage
local: categorie_id
foreign: stage_id
refClass: StageCategorie
Abonnement:
actAs:
Timestampable: ~
I18n:
fields: [libelle]
columns:
id:
type: integer
autoincrement: true
primary: true
libelle: { type: string(255), notnull: true, unique: true }
prix: { type: decimal, notnull: true, }
Mailing:
actAs: { Timestampable: ~ }
columns:
id:
type: integer
autoincrement: true
primary: true
userfrom_id:
type: integer
userto_id:
type: integer
user_id:
type: integer
from_nompnom: { type: string(255)}
from_email: { type: string(255)}
to_email: { type: string(255)}
sujet: { type: string(255), notnull: true }
message: { type: clob }
statut:
type: enum
values: [new, read, reply, forward]
default: new
folder:
type: enum
values: [inbox, drafts, sent, trash]
default: inbox
sfGuardUserProfile:
actAs:
Timestampable: ~
columns:
user_id:
type: integer
notnull: true
unique: true
email_new:
type: string(255)
unique: true
firstname:
type: string(255)
lastname:
type: string(255)
validate_at:
type: timestamp
validate:
type: string(33)
artisan_id:
type: integer
client_id:
type: integer
relations:
User:
class: sfGuardUser
foreign: id
local: user_id
type: one
onDelete: cascade
foreignType: one
foreignAlias: Profile
Artisan:
class: Artisan
foreign: id
local: artisan_id
type: one
onDelete: cascade
foreignType: one
foreignAlias: Profile
Client:
class: Client
foreign: id
local: client_id
type: one
onDelete: cascade
foreignType: one
foreignAlias: Profile
indexes:
validate:
fields: [validate]
Stage:
actAs:
Timestampable: ~
I18n:
fields: [libelle, description]
columns:
id:
type: integer
autoincrement: true
primary: true
artisan_id: { type: integer, notnull: true }
adresse_id: { type: integer, notnull: true }
categorie_id: { type: integer, notnull: true }
prix: { type: decimal }
dateDebut: { type: datetime , notnull: true }
dateFin: { type: datetime }
libelle: { type: string(255), notnull: true }
description: { type: clob}
personneMax: { type: integer}
relations:
Adresse:
local: adresse_id
foreign: id
foreignAlias: ADresse
Artisan:
local: artisan_id
foreign: id
foreignAlias: Artisan
Categorie:
class: Categorie
local: stage_id
foreign: categorie_id
refClass: StageCategorie
StageCategorie:
columns:
categorie_id:
type: integer
primary: true
stage_id:
type: integer
primary: true
indexes:
fk_StageCategorie_categorie1:
fields: [categorie_id]
fk_StageCategorie_stage1:
fields: [stage_id]
Page:
actAs:
Timestampable: ~
I18n:
fields: [titre, contenu, metaKeyword]
columns:
id:
type: integer
autoincrement: true
primary: true
datePublication: { type: datetime , notnull: true }
dateExpiration: { type: datetime }
user_id: { type: integer }
titre: { type: string(255), notnull: true }
contenu: { type: clob}
metaKeyword: { type: string(255)}
statut:
type: enum
values: [draft, published]
default: published
relations:
User:
class: sfGuardUser
foreign: id
local: user_id |
Partager