Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function up() |
||
12 | { |
||
13 | Schema::create('user_stats', function (Blueprint $table) { |
||
14 | $table->increments('id'); |
||
15 | $table->integer('user_id')->unsigned()->nullable()->index('fk_user_stats_user_id_idx'); |
||
16 | $table->integer('code_lines')->unsigned()->nullable(); |
||
17 | $table->timestamps(); |
||
18 | }); |
||
19 | } |
||
20 | |||
29 |