Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | public function up(): void |
||
12 | { |
||
13 | Schema::create('inline_query', static function (Blueprint $table) { |
||
14 | $table->bigInteger('id')->unsigned()->primary()->comment('Unique identifier for this query'); |
||
15 | $table->bigInteger('user_id')->nullable()->index('user_id')->comment('Unique user identifier'); |
||
16 | $table->char('location')->nullable()->comment('Location of the user'); |
||
17 | $table->text('query')->comment('Text of the query'); |
||
18 | $table->char('offset')->nullable()->comment('Offset of the result'); |
||
19 | $table->dateTime('created_at')->nullable()->comment('Entry date creation'); |
||
20 | }); |
||
28 |