Foundation.hs:204:10: Warning: Orphan instance: instance PersistUserCredentials User To avoid this move the instance declaration to the module of the class or of the type, or wrap the type with a newtype and declare the instance on the new type. この警告が出るのは、instanceを宣言しているモジュールが、型が宣言されているモジュールでも型クラスが宣言されているモジュールでもない場合(orphan=孤児)。 これを解消するにはinstance宣言を移動するか、あるいはnewtypeで新しい型を作り出して、その型に対してinstance宣言を追加す