Completed
Push — master ( 0b7797...8512ea )
by Arjay
02:27
created

OracleBlueprint   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 56
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 5
Bugs 2 Features 0
Metric Value
wmc 3
c 5
b 2
f 0
lcom 1
cbo 1
dl 0
loc 56
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setTablePrefix() 0 4 1
A createIndexName() 0 15 2
1
<?php
2
3
namespace Yajra\Oci8\Schema;
4
5
use Illuminate\Database\Schema\Blueprint;
6
7
class OracleBlueprint extends Blueprint
8
{
9
    /**
10
     * Table comment.
11
     *
12
     * @var string
13
     */
14
    public $comment = null;
15
16
    /**
17
     * Column comments
18
     *
19
     * @var array
20
     */
21
    public $commentColumns = [];
22
23
    /**
24
     * Database prefix variable.
25
     *
26
     * @var string
27
     */
28
    protected $prefix;
29
30
    /**
31
     * Set table prefix settings.
32
     *
33
     * @param string $prefix
34
     */
35
    public function setTablePrefix($prefix = '')
36
    {
37
        $this->prefix = $prefix;
38
    }
39
40
    /**
41
     * Create a default index name for the table.
42
     *
43
     * @param  string $type
44
     * @param  array $columns
45
     * @return string
46
     */
47
    protected function createIndexName($type, array $columns)
48
    {
49
        $short_type = [
50
            'primary' => 'pk',
51
            'foreign' => 'fk',
52
            'unique'  => 'uk',
53
        ];
54
55
        $type = isset($short_type[$type]) ? $short_type[$type] : $type;
56
57
        $index = strtolower($this->prefix . $this->table . '_' . implode('_', $columns) . '_' . $type);
58
59
        // max index name length is 30 chars
60
        return substr(str_replace(['-', '.'], '_', $index), 0, 30);
61
    }
62
}
63