我无法使用stephencelis sqlite.swift设置外键。
t.foreignKey(user_id, references:"user_mstr",user_id)
我有两个表user_master
和user_details
。如何将user_id
设置为user_detail
表中的外键。我要低于错误。
Cannot invoke foreignkey with an arguement list of type (Expression<string>),
您将字符串传递给引用。应该像
let user_id = Expression<String>("user_id")
let user_mstr = Table("user_mstr")
//cate t somehow
t.foreignKey(user_id, references: user_mstr, user_id)