Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function up() |
||
16 | { |
||
17 | Schema::create('players', function(Blueprint $table) { |
||
18 | $table->increments('id'); |
||
19 | |||
20 | $table->string('facebook_id', 128)->nullable(); |
||
21 | $table->string('gamecenter_id', 128)->nullable(); |
||
22 | $table->string('playgames_id', 128)->nullable(); |
||
23 | $table->string('udid', 128)->nullable(); |
||
24 | $table->string('name', 128)->nullable(); |
||
25 | $table->string('ip', 15); |
||
26 | |||
27 | $table->timestamps(); |
||
28 | }); |
||
42 |