| Conditions | 2 |
| Paths | 2 |
| Total Lines | 20 |
| Code Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | if (config('database.connections.sqlsrv.driver') == 'sqlite') { |
||
| 17 | $table->increments('id'); |
||
|
|
|||
| 18 | $table->string('full_name'); |
||
| 19 | $table->string('br_cpf'); |
||
| 20 | $table->string('email')->unique(); |
||
| 21 | $table->string('telephone_type'); |
||
| 22 | $table->string('telephone'); |
||
| 23 | $table->string('zip_code'); |
||
| 24 | $table->string('city'); |
||
| 25 | $table->string('state'); |
||
| 26 | $table->string('avenue'); |
||
| 27 | $table->bigInteger('number'); |
||
| 28 | $table->string('neighborhood'); |
||
| 29 | $table->string('complement'); |
||
| 30 | $table->string('password'); |
||
| 31 | $table->boolean('active'); |
||
| 32 | $table->rememberToken(); |
||
| 33 | $table->timestamps(); |
||
| 34 | } |
||
| 49 |