id(); $table->string('name'); $table->text('content'); $table->unsignedBigInteger('created_by'); $table->timestamps(); $table->foreign('created_by')->references('id')->on('users'); }); } public function down() { Schema::dropIfExists('sms_templates'); } };