Laravel5 数据库迁移如何改给表添加注释。方便生成数据字典

已邀请:

尤子墨

赞同来自:

是这个Comment么?
Schema::create($this->table, function (Blueprint $table) {
        $table->integer('user_id')->unsigned()->primary()->comment('用户ID');
        $table->float('balance')->comment('零钱金额');
        $table->timestamps();
    });

习惯把你宠坏

赞同来自:

这个是字段注释 我想要表的注释,比如这个表是什么表

要回复问题请先登录注册