Conditions | 1 |
Paths | 1 |
Total Lines | 21 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | // @todo COmentei fodaasse, verificar se da bug @bug |
||
17 | // // @todo PRecisa mesmo ? |
||
18 | // Schema::create('admins', function (Blueprint $table) { |
||
19 | // $table->engine = 'InnoDB'; |
||
20 | // $table->increments('id'); |
||
21 | |||
22 | // $table->string('first_name'); |
||
23 | // $table->string('last_name'); |
||
24 | // $table->string('email')->index(); |
||
25 | // $table->string('password'); |
||
26 | // $table->string('image')->nullable(); |
||
27 | // $table->string('role'); |
||
28 | // $table->text('permissions')->nullable(); |
||
29 | // $table->rememberToken(); |
||
30 | // $table->boolean('active'); |
||
31 | |||
32 | // $table->timestamps(); |
||
33 | // }); |
||
34 | } |
||
35 | |||
46 |