laravel maintained by thefunpower
Description
laravel
Author
kenken
Last update
2024/04/09 11:54
(dev-main)
License
Downloads
3
Tags
安装
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');
});