We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a546d8 commit 264cb9bCopy full SHA for 264cb9b
stubs/migration.stub
@@ -18,9 +18,10 @@ class {CLASS_NAME} extends Migration
18
$table->unsignedInteger('subject_id')->index();
19
$table->unsignedInteger('user_id')->nullable()->index();
20
$table->unsignedTinyInteger('event_type')->index();
21
- $table->string('field')->index();
22
- $table->string('value_from')->nullable()->index();
23
- $table->string('value_to')->nullable()->index();
+ $table->string('field_name')->index();
+ $table->string('field_value_old')->nullable()->index();
+ $table->string('field_value_new')->nullable()->index();
24
+ $table->timestamp('occurred_at')->index();
25
$table->timestamps();
26
{PROCESS_IDS_SETUP}
27
0 commit comments