restore composer.json, add mysqli extension
This commit is contained in:
37
database/migrations/2020_06_15_232416_create_firebases_table.php
Executable file
37
database/migrations/2020_06_15_232416_create_firebases_table.php
Executable file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateFirebasesTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('firebases', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->unsignedBigInteger('user_id')->nullable();
|
||||
$table->string('token');
|
||||
$table->string('device_id');
|
||||
$table->string('device_name');
|
||||
$table->string('device_type');
|
||||
|
||||
// $table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('firebases');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user