| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function up() |
||
| 14 | { |
||
| 15 | Schema::create( |
||
| 16 | 'providers', function (Blueprint $table) { |
||
| 17 | |||
| 18 | // Set the storage engine and primary key |
||
| 19 | $table->engine = 'InnoDB'; |
||
| 20 | $table->increments('id'); |
||
| 21 | |||
| 22 | // Ordinary columns |
||
| 23 | $table->string('name')->unique(); |
||
| 24 | $table->string('slug')->unique(); |
||
| 25 | $table->unsignedInteger('login_count')->default(0); |
||
| 26 | |||
| 27 | // Automatic columns |
||
| 28 | $table->timestamps(); |
||
| 29 | $table->softDeletes(); |
||
| 30 | } |
||
| 31 | ); |
||
| 32 | } |
||
| 33 | |||
| 44 |