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
| criteria:
connection: doctrine
tableName: criteria
columns:
name:
type: string(150)
notnull: true
merchantnotation:
connection: doctrine
tableName: merchantnotation
columns:
comment:
type: string(255)
evaluation:
type : integer(4)
datenotation:
type: timestamp
notnull: true
merchant_id:
type : integer
primary: true
account_id:
type : integer
primary: true
criteria_id:
type : integer
primary: true
relations:
merchant:
local: merchant_id
foreign: id
account:
local: account_id
foreign: id
criteria:
local: criteria_id
foreign: id
merchant:
connection: doctrine
tableName: merchant
columns:
merchant:
type: string(255)
notnull: true
bigcity:
type: string(150)
description:
type: string(255)
merchant:
type: string(255)
notnull: true
adress1:
type: string(255)
adress2:
type: string(255)
zipcode:
type: string(30)
city:
type: string(150)
webadress:
type: string(255)
phone:
type: string(45)
fax:
type: string(45)
email:
type: string(255)
logo:
type: string(255)
localsaletax:
type: decimal(4)
scale: 2
totalwinelist:
type: integer(4)
unsigned: true
country_id:
type: integer
notnull: true
created_at:
type: timestamp
notnull: true
created_by:
type: integer
notnull: true
modified_at:
type: timestamp
modified_by:
type: integer
relations:
country:
local: country_id
foreign: id
foreignAlias: countries
creationAccount:
class: account
local: created_by
foreign: id
foreignAlias: createdmerchant
modificationAccount:
class: account
local: modified_by
foreign: id
foreignAlias: modifiedmerchant
indexes:
merchant:
fields: merchant |
Partager