-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_migration_helper.php
executable file
·53 lines (49 loc) · 1.5 KB
/
_migration_helper.php
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
<?php
namespace Illuminate\Support {
/**
* Date: 2018/9/8
* @author George
* @method Fluent first()
* @method Fluent after($column)
* @method Fluent change()
* @method Fluent nullable()
* @method Fluent unsigned()
* @method Fluent unique()
* @method Fluent index()
* @method Fluent comment($comment)
* @method Fluent primary()
* @method Fluent default($value)
* @method Fluent onUpdate($value)
* @method Fluent onDelete($value)
* @method Fluent references($value)
* @method Fluent on($value)
* @method Fluent useCurrent()
* @package Illuminate\Support
*/
class Fluent {
}
}
namespace Illuminate\Database\Schema {
/**
* Date: 2018/9/8
* @author George
* @method ColumnDefinition first()
* @method ColumnDefinition after($column)
* @method ColumnDefinition change()
* @method ColumnDefinition nullable()
* @method ColumnDefinition unsigned()
* @method ColumnDefinition unique()
* @method ColumnDefinition index()
* @method ColumnDefinition comment($comment)
* @method ColumnDefinition primary()
* @method ColumnDefinition default($value)
* @method ColumnDefinition onUpdate($value)
* @method ColumnDefinition onDelete($value)
* @method ColumnDefinition references($value)
* @method ColumnDefinition on($value)
* @method ColumnDefinition useCurrent()
* @package Illuminate\Database\Schema
*/
class ColumnDefinition {
}
}