前提・実現したいこと
MySQLをどこでも使えるように、cleardbを利用したい
ここに質問の内容を詳しく書いてください。
(例)PHP(CakePHP)で●●なシステムを作っています。
■■な機能を実装中に以下のエラーメッセージが発生しました。
Vue.jsとLaraveとMySQLを使った、ログイン認証機能を作っています。
発生している問題・エラーメッセージ
エラーメッセージ
Method Illuminate\Database\Schema\Blueprint::profile does not exist.
該当のソースコード
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('users', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('email')->unique(); $table->string('password'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } } ### 試したこと ここに問題に対して試したことを記載してください。 https://stackoverflow.com/questions/55708824/how-to-fix-method-illuminate-database-schema-blueprintclass-does-not-exist こちらを参考にしましたが、profileがあるわけではないので、解決しませんでした。 ### 補足情報(FW/ツールのバージョンなど) PCはM1Macです。 ここにより詳細な情報を記載してください。PHP ソースコード
あなたの回答
tips
プレビュー