| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function up() |
||
| 14 | { |
||
| 15 | Schema::create( |
||
| 16 | 'gamer_events', function (Blueprint $table) { |
||
| 17 | $table->engine = 'InnoDB'; |
||
| 18 | $table->increments('id')->unsigned(); |
||
| 19 | $table->string('event', 255)->nullable(); |
||
| 20 | $table->integer('user_id')->nullable(); |
||
| 21 | $table->integer('position')->nullable(); |
||
| 22 | $table->integer('value')->nullable(); |
||
| 23 | $table->timestamps(); |
||
| 24 | $table->softDeletes(); |
||
| 25 | } |
||
| 26 | ); |
||
| 27 | } |
||
| 28 | |||
| 39 |