Skip to content

thefunpower/laravel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

安装

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');  
});