1 | <?php |
||
18 | class ColumnSchemaBuilder extends AbstractColumnSchemaBuilder |
||
19 | { |
||
20 | /** |
||
21 | * @inheritdoc |
||
22 | */ |
||
23 | 1 | protected function buildUnsignedString() |
|
27 | |||
28 | /** |
||
29 | * @inheritdoc |
||
30 | */ |
||
31 | 1 | protected function buildAfterString() |
|
32 | { |
||
33 | 1 | return $this->after !== null ? |
|
34 | ' AFTER ' . $this->db->quoteColumnName($this->after) : |
||
35 | 1 | ''; |
|
36 | } |
||
37 | |||
38 | /** |
||
39 | * @inheritdoc |
||
40 | */ |
||
41 | protected function buildFirstString() |
||
45 | |||
46 | /** |
||
47 | * @inheritdoc |
||
48 | */ |
||
49 | 1 | protected function buildCommentString() |
|
53 | |||
54 | /** |
||
55 | * @inheritdoc |
||
56 | */ |
||
57 | 1 | public function __toString() |
|
71 | } |
||
72 |