We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function up() |
||
| 29 | { |
||
| 30 | $this->schema->create( |
||
| 31 | 'banks', function (Blueprint $table) { |
||
| 32 | $table->uuid('id')->unique()->primary(); |
||
| 33 | $table->string('name'); |
||
| 34 | $table->string('email'); |
||
| 35 | $table->string('url'); |
||
| 36 | $table->string('phone'); |
||
| 37 | $table->string('location'); |
||
| 38 | $table->timestamps(); |
||
| 39 | $table->softDeletes(); |
||
| 40 | } |
||
| 41 | ); |
||
| 42 | } |
||
| 43 | |||
| 54 |