the-jane-world/laravel-model-comment

此包的最新版本(1.0.2)没有可用的许可证信息。

1.0.2 2022-03-31 08:11 UTC

This package is auto-updated.

Last update: 2024-09-29 06:14:43 UTC


README

安装

composer require the-jane-world/laravel-model-comment

启动

示例

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='新用户表';