<?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateTeamsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('teams', function (Blueprint $table) { $table->increments('id'); $table->integer('owner_id')->index(); $table->string('name'); $table->string('slug')->nullable()->unique(); $table->text('photo_url')->nullable(); $table->string('braintree_id')->nullable(); $table->string('current_billing_plan')->nullable(); $table->string('paypal_email')->nullable(); $table->string('card_brand')->nullable(); $table->string('card_last_four')->nullable(); $table->text('extra_billing_information')->nullable(); $table->timestamp('trial_ends_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('teams'); } }