table('sys_image', ['engine' => 'MyISAM', 'comment' => '图片表']); $table->addColumn('language_id', 'integer', ['signed' => false, 'null' => false, 'comment' => '语言ID']) ->addColumn('image_name', 'string', ['limit' => 125, 'null' => false, 'comment' => '图片名称']) ->addColumn('image_path', 'string', ['limit' => 125, 'null' => false, 'comment' => '图片路径']) ->addColumn('image_thumb', 'string', ['limit' => 125, 'null' => false, 'comment' => '缩略图路径']) ->addColumn('image_size', 'integer', ['null' => false, 'comment' => '图片大小']) ->addColumn('image_type', 'string', ['limit' => 125, 'null' => false, 'comment' => '图片类型']) ->addColumn('image_md5', 'string', ['limit' => 32, 'null' => false, 'comment' => '图片md5值']) ->addColumn('image_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(); } }