PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
laravel
/
cashier
/
database
/
migrations
<?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', ]); }); } }
[-] 2019_05_03_000001_create_customer_columns.php
[edit]
[-] 2019_05_03_000002_create_subscriptions_table.php
[edit]
[+]
..
[-] 2019_05_03_000003_create_subscription_items_table.php
[edit]