thefunpower/laravel

v2.0.1 2024-04-09 09:54 UTC

This package is auto-updated.

Last update: 2024-05-09 10:07:08 UTC


README

composer require thefunpower/laravel

数据表

Schema::create('config', function (Blueprint $table) {
    $table->id();
    $table->string('title')->index(); 
    $table->text('body')->nullable(); 
    $table->unsignedInteger('created_at'); 
    $table->unsignedInteger('updated_at');  
});