-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.jeeves.yaml
88 lines (88 loc) · 2.11 KB
/
.jeeves.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
Mygento:
Payment:
Keys:
gui: false
columns:
id:
type: int
pk: true
identity: true
unsigned: true
nullable: false
comment: 'Key ID'
code:
type: varchar
nullable: false
comment: 'Module CodeName'
order_id:
type: int
unsigned: true
nullable: false
comment: 'Order ID'
hkey:
type: varchar
nullable: false
comment: 'Hashed Key'
indexes:
IX_MYG_PAY_KEY_CODE:
columns: ['code']
fk:
FK_PAY_KEY_ORD_SAL_ORD_ENT_ID:
column: 'order_id'
referenceTable: 'sales_order'
referenceColumn: 'entity_id'
indexName: 'IX_KEY_ORD_ID'
Registration:
gui: false
columns:
id:
type: int
pk: true
identity: true
unsigned: true
nullable: false
comment: 'Key ID'
code:
type: varchar
nullable: false
comment: 'Module CodeName'
order_id:
type: int
unsigned: true
nullable: false
comment: 'Order ID'
payment_id:
type: varchar
nullable: false
comment: 'Payment ID'
payment_url:
type: varchar
nullable: false
comment: 'Payment Url'
try:
type: int
unsigned: true
nullable: false
default: 0
comment: 'Try'
payment_type:
type: varchar
nullable: false
comment: 'Payment Type'
created_at:
type: timestamp
nullable: false
default: CURRENT_TIMESTAMP
on_update: false
comment: 'Created At'
indexes:
IX_MYG_PAY_REG_PAY_ID:
columns: ['payment_id']
IX_MYG_PAY_REG_CODE:
columns: ['code']
fk:
FK_PAY_REG_ORD_SAL_ORD_ENT_ID:
column: 'order_id'
referenceTable: 'sales_order'
referenceColumn: 'entity_id'
indexName: 'IX_REG_ORD_ID'