table('sys_video', ['engine' => 'MyISAM', 'comment' => '视频上传表']); $table->addColumn('language_id', 'integer', ['signed' => false, 'null' => false, 'comment' => '语言ID']) ->addColumn('module', 'string', ['limit' => 64, 'null' => false, 'comment' => '视频所属模块']) ->addColumn('video_path', 'string', ['limit' => 125, 'null' => false, 'comment' => '视频路径']) ->addColumn('video_size', 'integer', ['null' => false, 'comment' => '视频大小']) ->addColumn('video_type', 'string', ['limit' => 125, 'null' => false, 'comment' => '视频类型']) ->addColumn('video_md5', 'string', ['limit' => 32, 'null' => false, 'comment' => '视频md5值']) ->addColumn('video_sha1', 'string', ['limit' => 40, 'null' => false, 'comment' => '视频sha1值']) ->addColumn('created_at', 'timestamp', ['null' => false, 'default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addColumn('deleted_at', 'timestamp', ['null' => true, 'comment' => '删除时间']) ->create(); } }