Blame view

schema/migration.php 3.11 KB
acf45df7   Alex Savenko   project entity
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
  <?php
  
  /**
   * Created by PhpStorm.
   * User: Alex Savenko
   * Date: 07.02.2017
   * Time: 12:32
   */
  
  use Phalcon\Db\Column as Column;
  use Phalcon\Db\Index as Index;
  use Phalcon\Db\Reference as Reference;
  use Phalcon\Mvc\Model\Migration;
  
  class ProductsMigration_100 extends Migration
  {
      public function up()
      {
          $this->morphTable(
              "products",
              [
                  "columns" => [
                      new Column(
                          "id",
                          [
                              "type"          => Column::TYPE_INTEGER,
                              "size"          => 10,
                              "unsigned"      => true,
                              "notNull"       => true,
                              "autoIncrement" => true,
                              "first"         => true,
                          ]
                      ),
                      new Column(
                          "product_types_id",
                          [
                              "type"     => Column::TYPE_INTEGER,
                              "size"     => 10,
                              "unsigned" => true,
                              "notNull"  => true,
                              "after"    => "id",
                          ]
                      ),
                      new Column(
                          "name",
                          [
                              "type"    => Column::TYPE_VARCHAR,
                              "size"    => 70,
                              "notNull" => true,
                              "after"   => "product_types_id",
                          ]
                      ),
                      new Column(
                          "price",
                          [
                              "type"    => Column::TYPE_DECIMAL,
                              "size"    => 16,
                              "scale"   => 2,
                              "notNull" => true,
                              "after"   => "name",
                          ]
                      ),
                  ],
                  "indexes" => [
                      new Index(
                          "PRIMARY",
                          [
                              "id",
                          ]
                      ),
                      new Index(
                          "product_types_id",
                          [
                              "product_types_id",
                          ]
                      ),
                  ],
                  "references" => [
                      new Reference(
                          "products_ibfk_1",
                          [
                              "referencedSchema"  => "invo",
                              "referencedTable"   => "product_types",
                              "columns"           => ["product_types_id"],
                              "referencedColumns" => ["id"],
                          ]
                      ),
                  ],
                  "options" => [
                      "TABLE_TYPE"      => "BASE TABLE",
                      "ENGINE"          => "InnoDB",
                      "TABLE_COLLATION" => "utf8_general_ci",
                  ],
              ]
          );
      }
  }