bigIncrements('id'); $table->string('url', length: 255); $table->string('type', length: 255); $table->boolean('active'); $table->integer('admin_id')->nullable(); $table->string('format', length: 255); $table->string('token', length: 255)->nullable(); $table->timestamp('last_updated', precision: 0)->nullable(); $table->json('list_data')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('source'); } };