51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Schema\Blueprint;
|
||
|
use Illuminate\Database\Migrations\Migration;
|
||
|
|
||
|
class CreateSubscriptionsTable extends Migration
|
||
|
{
|
||
|
/**
|
||
|
* Run the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function up()
|
||
|
{
|
||
|
Schema::create('subscriptions', function ($table) {
|
||
|
$table->increments('id');
|
||
|
$table->integer('user_id');
|
||
|
$table->string('name');
|
||
|
$table->string('stripe_id');
|
||
|
$table->string('stripe_plan');
|
||
|
$table->integer('quantity');
|
||
|
$table->timestamp('trial_ends_at')->nullable();
|
||
|
$table->timestamp('ends_at')->nullable();
|
||
|
$table->timestamps();
|
||
|
});
|
||
|
|
||
|
Schema::create('team_subscriptions', function ($table) {
|
||
|
$table->increments('id');
|
||
|
$table->integer('team_id');
|
||
|
$table->string('name');
|
||
|
$table->string('stripe_id');
|
||
|
$table->string('stripe_plan');
|
||
|
$table->integer('quantity');
|
||
|
$table->timestamp('trial_ends_at')->nullable();
|
||
|
$table->timestamp('ends_at')->nullable();
|
||
|
$table->timestamps();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Reverse the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function down()
|
||
|
{
|
||
|
Schema::drop('subscriptions');
|
||
|
Schema::drop('team_subscriptions');
|
||
|
}
|
||
|
}
|