syncd icon indicating copy to clipboard operation
syncd copied to clipboard

add migrate tool

Open morya opened this issue 5 years ago • 2 comments

add support for sqlite3 database

私以为syncd如果用了sqlite3,会给安装和使用提供极大的便利性, 大多数情况下,小公司的项目,并不需要mysql来管理。

IMHO, syncd would benefit from sqlite database. It's small and lightweight, don't need extra setup. In most cases, small project would not need mysql.

morya avatar Apr 16 '19 03:04 morya

暂时还不能合入,部分页面功能不正常

morya avatar Apr 16 '19 13:04 morya

sqlite3 在没有设置limit,仅设置offset时,会报sql非法。 我想这样改

	if query.Limit > 0 {
		db = db.Limit(query.Limit)
	}

改成

	if query.Limit > 0 {
		db = db.Limit(query.Limit)
	} else {
		db = db.Limit(999)
        }

morya avatar Apr 16 '19 14:04 morya