-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmitacan.install
80 lines (79 loc) · 2.02 KB
/
mitacan.install
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
<?php
function mitacan_schema() {
$schema["excel"] = [
"description" => "Ürün İlave Bilgiler Temp Tablosu",
"fields" => [
"stoktipi" => [
"description" => "Stok Tipi",
"type" => "varchar",
"length" => 5,
"not null" => TRUE,
"default" => "00000",
],
"stokkodu" => [
"description" => "Stok Kodu",
"type" => "varchar",
"length" => 25,
"not null" => TRUE,
],
"ebeveyn" => [
"description" => "Ebeveyn Stok Kodu",
"type" => "varchar",
"length" => 25,
"not null" => TRUE,
],
"logo" => [
"description" => "Ürünün Logosu",
"type" => "varchar",
"length" => 75,
"not null" => TRUE,
"default" => "defaultlogo.png",
],
"gorsel" => [
"description" => "Ürün Görseli",
"type" => "varchar",
"length" => 75,
"not null" => TRUE,
"default" => "hazirlaniyor.png",
],
"grupkodu" => [
"description" => "Grup Kodu",
"type" => "int",
],
"grupadi" => [
"description" => "Grup Adı",
"type" => "varchar",
"length" => 250,
],
"grupindex" => [
"description" => "Grup Kodu İçindeki Ürünlerin Sıralaması",
"type" => "int",
],
"paketadedi" => [
"description" => "Paket İçi Miktarı",
"type" => "int",
"not null" => TRUE,
"default" => 1,
],
],
$schema['urun'] = [
'description' > 'Ürün ceşitli bilgileri',
'fields' => [
'stokkodu' => [
'description' => 'Ürün stok kodu',
'type' => 'varchar',
'length' => 250
],
'image_id' => [
'description' => 'Ürün görsel nesnesi target_id',
'type' => 'int',
],
'logo_id' => [
'description' => 'Ürün görsel nesnesi target_id',
'type' => 'int',
],
]
]
];
return $schema;
}