the-jane-world/laravel-model-comment
Composer 安装命令:
composer require the-jane-world/laravel-model-comment
包简介
README 文档
README
install
composer require the-jane-world/laravel-model-comment
start
示例
public function up() { Schema::create('new_users', function (Blueprint $table) { $table->id(); $table->timestamps(); $table->comment('新用户表'); }); }
CREATE TABLE `new_users` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='新用户表';
统计信息
- 总下载量: 1.48k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2022-03-31