1 | <?php |
||
7 | class Blueprint extends BaseBlueprint |
||
8 | { |
||
9 | public function recordStamps() |
||
15 | |||
16 | public function ipStamps() |
||
21 | |||
22 | public function userStamps() |
||
27 | |||
28 | public function softDeletesRecordStamps() |
||
33 | |||
34 | public function softDeletesStamps() |
||
39 | |||
40 | public function dropRecordStamps() |
||
46 | |||
47 | public function dropIpStamps() |
||
51 | |||
52 | public function dropUserStamps() |
||
56 | |||
57 | public function dropSoftDeletesRecordStamps() |
||
62 | |||
63 | public function dropSoftDeletesStamps() |
||
67 | |||
68 | /** |
||
69 | * Specify a fulltext index for the table. |
||
70 | * |
||
71 | * @param string|array $columns |
||
72 | * @param string $name |
||
73 | * @return \Illuminate\Support\Fluent |
||
74 | */ |
||
75 | public function fulltext($columns, $name = null) |
||
79 | |||
80 | /** |
||
81 | * Indicate that the given fulltext key should be dropped. |
||
82 | * |
||
83 | * @param string|array $index |
||
84 | * @return \Illuminate\Support\Fluent |
||
85 | */ |
||
86 | public function dropFulltext($index) |
||
90 | |||
91 | /** |
||
92 | * Add the index commands fluently specified on columns. |
||
93 | * |
||
94 | * @return void |
||
95 | */ |
||
96 | protected function addFluentIndexes() |
||
121 | } |
||
122 |