id(); $table->string('quote'); $table->integer('times_used')->default(0); $table->timestamp('last_used')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('quotes'); } };