1 | <?php |
||
14 | class CreateAuthUsersTable extends Migration |
||
15 | { |
||
16 | /* ----------------------------------------------------------------- |
||
17 | | Constructor |
||
18 | | ----------------------------------------------------------------- |
||
19 | */ |
||
20 | |||
21 | /** |
||
22 | * Make a migration instance. |
||
23 | */ |
||
24 | public function __construct() |
||
30 | |||
31 | /* ----------------------------------------------------------------- |
||
32 | | Main Methods |
||
33 | | ----------------------------------------------------------------- |
||
34 | */ |
||
35 | |||
36 | /** |
||
37 | * Run the migrations. |
||
38 | */ |
||
39 | public function up() |
||
57 | |||
58 | /* ----------------------------------------------------------------- |
||
59 | | Other Methods |
||
60 | | ----------------------------------------------------------------- |
||
61 | */ |
||
62 | |||
63 | /** |
||
64 | * Add credentials columns. |
||
65 | * |
||
66 | * @param \Illuminate\Database\Schema\Blueprint $table |
||
67 | */ |
||
68 | private function addCredentialsColumns(Blueprint $table) |
||
80 | } |
||
81 |