-1

I am using Cashier 10.7 and Stripe 7 and Laravel 5.8. I have integrated Cashier into my application and now I want to change type of 'ends_at' column. However, subscription table migration, migrate auto, and migration folder does not contain subscription migration. Then how can I solve this. thanks

Andrew Hardiman
  • 929
  • 1
  • 15
  • 30

1 Answers1

1

Try this one

  1. First create migration

    php artisan make:migration change_ends_at_type_to_subscription_table

2)paste the below line

$table->type('ends_at')->change();

3)run command

php artisan migrate
hammad khan
  • 57
  • 3
  • 6