Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
10 | public function up() |
||
11 | { |
||
12 | Schema::create('session_recordings', function (Blueprint $table) { |
||
13 | $table->bigIncrements('id'); |
||
14 | $table->string('path'); |
||
15 | $table->string('session_id'); |
||
16 | $table->binary('recordings'); |
||
17 | $table->string('user_id')->nullable(); |
||
18 | $table->timestamps(); |
||
19 | }); |
||
20 | } |
||
21 | |||
27 |