pushdeer/api/database/migrations/2021_12_07_141137_create_push_deer_messages_table.php
2021-12-23 00:19:55 +08:00

38 lines
873 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePushDeerMessagesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('push_deer_messages', function (Blueprint $table) {
$table->id();
$table->string('uid');
$table->string('text');
$table->string('desp')->nullable();
$table->string('type')->default('markdown');
$table->string('readkey');
$table->string('url')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('push_deer_messages');
}
}