public function up() { Schema::create('team_members', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('position'); $table->string('image'); $table->timestamps(); }); }