49 lines
1.5 KiB
PHP
49 lines
1.5 KiB
PHP
<?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('stripe_id')->nullable();
|
|
$table->string('current_billing_plan')->nullable();
|
|
$table->string('card_brand')->nullable();
|
|
$table->string('card_last_four')->nullable();
|
|
$table->string('card_country')->nullable();
|
|
$table->string('billing_address')->nullable();
|
|
$table->string('billing_address_line_2')->nullable();
|
|
$table->string('billing_city')->nullable();
|
|
$table->string('billing_state')->nullable();
|
|
$table->string('billing_zip', 25)->nullable();
|
|
$table->string('billing_country', 2)->nullable();
|
|
$table->string('vat_id', 50)->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');
|
|
}
|
|
}
|