Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::table('users', function (Blueprint $table) { |
||
17 | $table->string('name')->nullable()->change(); |
||
18 | $table->string('first_name')->nullable(); |
||
19 | $table->string('last_name')->nullable(); |
||
20 | $table->string('company')->nullable(); |
||
21 | $table->string('piva')->nullable(); |
||
22 | |||
23 | $table->boolean('admin')->default(false); |
||
24 | |||
25 | $table->string('telephone')->nullable(); |
||
26 | $table->string('address')->nullable(); |
||
27 | $table->string('province')->nullable(); |
||
28 | $table->text('floor')->nullable(); |
||
29 | $table->string('city')->nullable(); |
||
30 | $table->string('cap')->nullable(); |
||
31 | }); |
||
44 |