-
Notifications
You must be signed in to change notification settings - Fork 4
/
.jeeves.phpunit_v1.yaml
174 lines (174 loc) · 4.28 KB
/
.jeeves.phpunit_v1.yaml
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
Mygento:
SampleModule:
settings:
admin_route: samplium
shipping:
code: "slowcourier"
entities:
Columns:
columns:
id:
type: int
pk: true
identity: true
unsigned: true
comment: "Column ID"
is_active:
type: boolean
has_flag:
type: boolean
nullable: true
merge_date:
type: date
discount:
type: decimal
nullable: false
cost:
type: decimal
price:
type: price
name:
type: varchar
nullable: false
comment: "City"
length: 100
description:
type: text
nullable: false
comment: "Description"
created_at:
type: timestamp
nullable: false
default: "CURRENT_TIMESTAMP"
comment: "Create time"
on_update: false
updated_at:
type: timestamp
nullable: false
default: "CURRENT_TIMESTAMP"
comment: "Modify time"
on_update: true
cartItem:
tablename: mygento_sample_custom_cart_item
comment: "Table for Customer Item"
columns:
cart_id:
type: int
pk: true
identity: true
unsigned: true
comment: "Address ID"
is_active:
type: boolean
delivery_date:
type: date
nullable: true
city:
type: varchar
nullable: false
comment: "City"
length: 100
customer_group:
type: int
unsigned: false
comment: "Customer Group"
length: 6
nullable: false
source: 'Magento\Customer\Model\Customer\Source\Group'
description:
type: text
nullable: false
comment: "Description"
created_at:
type: timestamp
nullable: false
default: "CURRENT_TIMESTAMP"
comment: "Create time"
on_update: false
updated_at:
type: timestamp
nullable: false
default: "CURRENT_TIMESTAMP"
comment: "Modify time"
on_update: true
discount:
type: decimal
price:
type: price
indexes:
IX_CITY:
columns: ["city"]
IX_ACTIVE:
columns: ["is_active"]
Card:
api: true
cacheable: true
cache_tag: samp_card
per_store: true
columns:
card_id:
type: smallint
pk: true
identity: true
unsigned: false
comment: "Card ID"
title:
type: varchar
code:
type: varchar
category_id:
type: int
nullable: false
is_active:
type: boolean
Ticket:
gui: false
columns:
ticket_id:
type: int
pk: true
identity: true
unsigned: true
comment: "Ticket ID"
name:
type: varchar
is_active:
type: boolean
Poster:
settings:
version: 2.4
api: true
cacheable: true
readonly: true
graphql: true
cache_tag: samp_poster
columns:
entity_id:
type: int
pk: true
unsigned: true
comment: "Banner ID"
name:
type: varchar
subname:
type: varchar
family:
type: varchar
active:
type: boolean
product_id:
type: int
unsigned: true
indexes:
IX_NAME:
type: "unique"
columns: ["family", "subname"]
IX_PRD_U:
type: "unique"
columns: ["product_id"]
fk:
FK_PROD_ID_CAT_PRD_ENT_ID:
column: "product_id"
referenceTable: "catalog_product_entity"
referenceColumn: "entity_id"
indexName: "IX_PR_ID"