Laravel Cashierをインストールした後、SSH接続したXserver内で、php artisan migrate:refresh --seedを実行すると、以下のようなエラーが出てしまいました。
$ php artisan migrate:refresh --seed ************************************** * Application In Production! * ************************************** Do you really wish to run this command? (yes/no) [no]: > yes Rolling back: 2019_05_03_000001_create_customer_columns Illuminate\Database\QueryException SQLSTATE[42000]: Syntax error or access violation: 1091 Can't DROP 'pm_type'; check that column/key exists (SQL: alter table `users` drop `stripe_id`, drop `pm_type`, drop `pm_last_four`, drop `trial_ends_at`) at vendor/laravel/framework/src/Illuminate/Database/Connection.php:692 688▕ // If an exception occurs when attempting to run a query, we'll format the error 689▕ // message to include the bindings with SQL, which will make this exception a 690▕ // lot more helpful to the developer instead of just the database's errors. 691▕ catch (Exception $e) { ➜ 692▕ throw new QueryException( 693▕ $query, $this->prepareBindings($bindings), $e 694▕ ); 695▕ } 696▕ +44 vendor frames 45 artisan:37 Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
2019_05_03_000001_create_customer_columnsの内容は以下のようになっています。
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateCustomerColumns extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('users', function (Blueprint $table) { $table->string('stripe_id')->nullable()->index(); $table->string('pm_type')->nullable(); $table->string('pm_last_four', 4)->nullable(); $table->timestamp('trial_ends_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn([ 'stripe_id', 'pm_type', 'pm_last_four', 'trial_ends_at', ]); }); } }
ちなみに、ローカル環境ではきちんとmigrateできます。
このエラーの解決方法をご存知の方がいれば教えていただけないでしょうか。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。