diff --git a/app/Models/Operazione.php b/app/Models/Operazione.php index b0b4590..fb79d24 100644 --- a/app/Models/Operazione.php +++ b/app/Models/Operazione.php @@ -5,8 +5,6 @@ namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\DB; -use App\Models\Auto; -use App\Models\Categorie; class Operazione extends Model { diff --git a/database/migrations/2022_03_11_110826_create_events_table.php b/database/migrations/2022_03_11_110826_create_events_table.php index c332584..a806428 100644 --- a/database/migrations/2022_03_11_110826_create_events_table.php +++ b/database/migrations/2022_03_11_110826_create_events_table.php @@ -18,13 +18,9 @@ class CreateEventsTable extends Migration Schema::create('events', function (Blueprint $table) { $table->id(); - $table->string('title'); - $table->date('start'); - $table->date('end'); - $table->timestamps(); });