incorrect table name

This commit is contained in:
2023-07-24 12:35:12 +10:00
parent c47c511674
commit d35b895ff4

View File

@@ -11,7 +11,7 @@ return new class extends Migration
*/
public function up(): void
{
Schema::table('analytics', function (Blueprint $table) {
Schema::table('analytics_sessions', function (Blueprint $table) {
$table->text('useragent')->nullable()->change();
});
}
@@ -21,7 +21,7 @@ return new class extends Migration
*/
public function down(): void
{
Schema::table('analytics', function (Blueprint $table) {
Schema::table('analytics_sessions', function (Blueprint $table) {
$table->text('useragent')->change();
});
}