Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | public function up(): void |
||
12 | { |
||
13 | Schema::create('conversation', static function (Blueprint $table) { |
||
14 | $table->bigInteger('id', true)->unsigned()->comment('Unique identifier for this entry'); |
||
15 | $table->bigInteger('user_id')->nullable()->index('user_id')->comment('Unique user identifier'); |
||
16 | $table->bigInteger('chat_id')->nullable()->index('chat_id')->comment('Unique user or chat identifier'); |
||
17 | $table->enum('status', ['active', 'cancelled', 'stopped'])->default('active')->index('status')->comment('Conversation state'); |
||
18 | $table->string('command', 160)->nullable()->default('')->comment('Default command to execute'); |
||
19 | $table->text('notes')->nullable()->comment('Data stored from command'); |
||
20 | $table->timestamps(); |
||
21 | }); |
||
29 |