From 5a9417ea3a2f994ea4620a54044fb8e60003a4c2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Carlos=20Nieto?= <jose.carlos@menteslibres.net>
Date: Tue, 16 Jun 2015 21:20:01 -0500
Subject: [PATCH] Merging copyright statements.

---
 db.go                         | 2 +-
 db_test.go                    | 2 +-
 error.go                      | 2 +-
 mongo/collection.go           | 2 +-
 mongo/connection.go           | 2 +-
 mongo/connection_test.go      | 2 +-
 mongo/database.go             | 2 +-
 mongo/database_test.go        | 2 +-
 mongo/id.go                   | 2 +-
 mongo/result.go               | 2 +-
 mysql/collection.go           | 2 +-
 mysql/connection.go           | 2 +-
 mysql/connection_test.go      | 2 +-
 mysql/database.go             | 2 +-
 mysql/database_test.go        | 2 +-
 mysql/template.go             | 2 +-
 net.go                        | 2 +-
 postgresql/collection.go      | 2 +-
 postgresql/connection.go      | 2 +-
 postgresql/connection_test.go | 2 +-
 postgresql/database.go        | 2 +-
 postgresql/database_test.go   | 2 +-
 ql/collection.go              | 2 +-
 ql/connection.go              | 2 +-
 ql/connection_test.go         | 2 +-
 ql/database.go                | 2 +-
 ql/database_test.go           | 2 +-
 ql/template.go                | 2 +-
 settings.go                   | 2 +-
 sqlite/collection.go          | 2 +-
 sqlite/connection.go          | 2 +-
 sqlite/connection_test.go     | 2 +-
 sqlite/database.go            | 2 +-
 sqlite/database_test.go       | 2 +-
 sqlite/template.go            | 2 +-
 util/schema/schema.go         | 2 +-
 util/sqlutil/debug.go         | 2 +-
 util/sqlutil/fetch.go         | 2 +-
 util/sqlutil/result/result.go | 2 +-
 util/sqlutil/tx/tx.go         | 2 +-
 wrapper.go                    | 2 +-
 41 files changed, 41 insertions(+), 41 deletions(-)

diff --git a/db.go b/db.go
index 9807a3aa..0299af70 100644
--- a/db.go
+++ b/db.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/db_test.go b/db_test.go
index 9d9023c5..29f7a7f7 100644
--- a/db_test.go
+++ b/db_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/error.go b/error.go
index 4110560b..aa62895d 100644
--- a/error.go
+++ b/error.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/mongo/collection.go b/mongo/collection.go
index df339a01..8e796993 100644
--- a/mongo/collection.go
+++ b/mongo/collection.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/mongo/connection.go b/mongo/connection.go
index cb4917a0..10d2730b 100644
--- a/mongo/connection.go
+++ b/mongo/connection.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/mongo/connection_test.go b/mongo/connection_test.go
index 3e3f4328..70179b5c 100644
--- a/mongo/connection_test.go
+++ b/mongo/connection_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/mongo/database.go b/mongo/database.go
index 3e473c15..fe44e5ea 100644
--- a/mongo/database.go
+++ b/mongo/database.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/mongo/database_test.go b/mongo/database_test.go
index 91e316f5..617a2d17 100644
--- a/mongo/database_test.go
+++ b/mongo/database_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/mongo/id.go b/mongo/id.go
index 18076bd4..8ec49140 100644
--- a/mongo/id.go
+++ b/mongo/id.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/mongo/result.go b/mongo/result.go
index 8e6269b3..8d85e924 100644
--- a/mongo/result.go
+++ b/mongo/result.go
@@ -1,5 +1,5 @@
 /*
-  Copyright (c) 2014 José Carlos Nieto, https://menteslibres.net/xiam
+  Copyright (c) 2014 The upper.io/db authors. All rights reserved.
 
   Permission is hereby granted, free of charge, to any person obtaining
   a copy of this software and associated documentation files (the
diff --git a/mysql/collection.go b/mysql/collection.go
index d510642b..e70d71b4 100644
--- a/mysql/collection.go
+++ b/mysql/collection.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2015 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2015 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/mysql/connection.go b/mysql/connection.go
index faa3b4cf..af830f33 100644
--- a/mysql/connection.go
+++ b/mysql/connection.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/mysql/connection_test.go b/mysql/connection_test.go
index 1e833d1e..8f7af1b5 100644
--- a/mysql/connection_test.go
+++ b/mysql/connection_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/mysql/database.go b/mysql/database.go
index df840b22..d14a9822 100644
--- a/mysql/database.go
+++ b/mysql/database.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2015 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2015 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/mysql/database_test.go b/mysql/database_test.go
index 17df86fc..9e681ac9 100644
--- a/mysql/database_test.go
+++ b/mysql/database_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2015 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2015 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/mysql/template.go b/mysql/template.go
index 1b2d21da..20db212c 100644
--- a/mysql/template.go
+++ b/mysql/template.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2015 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2015 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/net.go b/net.go
index e779d48f..c4825b43 100644
--- a/net.go
+++ b/net.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/postgresql/collection.go b/postgresql/collection.go
index 0158c17d..b21ac2a4 100644
--- a/postgresql/collection.go
+++ b/postgresql/collection.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2015 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2015 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/postgresql/connection.go b/postgresql/connection.go
index 451383ce..a314d0e2 100644
--- a/postgresql/connection.go
+++ b/postgresql/connection.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2015 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2015 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/postgresql/connection_test.go b/postgresql/connection_test.go
index dd6cc0d1..f2210c19 100644
--- a/postgresql/connection_test.go
+++ b/postgresql/connection_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2015 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2015 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/postgresql/database.go b/postgresql/database.go
index a95c014c..f829e759 100644
--- a/postgresql/database.go
+++ b/postgresql/database.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2015 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2015 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/postgresql/database_test.go b/postgresql/database_test.go
index 33176789..227393ff 100644
--- a/postgresql/database_test.go
+++ b/postgresql/database_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2015 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2015 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/ql/collection.go b/ql/collection.go
index 53a5d4c1..110aec91 100644
--- a/ql/collection.go
+++ b/ql/collection.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2015 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2015 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/ql/connection.go b/ql/connection.go
index 389382c9..e364d12d 100644
--- a/ql/connection.go
+++ b/ql/connection.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/ql/connection_test.go b/ql/connection_test.go
index 63e43561..4615c4ee 100644
--- a/ql/connection_test.go
+++ b/ql/connection_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/ql/database.go b/ql/database.go
index c6529044..f0685105 100644
--- a/ql/database.go
+++ b/ql/database.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2015 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2015 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/ql/database_test.go b/ql/database_test.go
index bc97d167..f06bae22 100644
--- a/ql/database_test.go
+++ b/ql/database_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/ql/template.go b/ql/template.go
index 61fc47c0..d97b5238 100644
--- a/ql/template.go
+++ b/ql/template.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/settings.go b/settings.go
index b44a2590..6365e577 100644
--- a/settings.go
+++ b/settings.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/sqlite/collection.go b/sqlite/collection.go
index 0aadfcd0..d7fe183a 100644
--- a/sqlite/collection.go
+++ b/sqlite/collection.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2015 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2015 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/sqlite/connection.go b/sqlite/connection.go
index 2a34c4c1..21d5604f 100644
--- a/sqlite/connection.go
+++ b/sqlite/connection.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/sqlite/connection_test.go b/sqlite/connection_test.go
index cd2676b5..e93487c7 100644
--- a/sqlite/connection_test.go
+++ b/sqlite/connection_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/sqlite/database.go b/sqlite/database.go
index 22de80bb..94401675 100644
--- a/sqlite/database.go
+++ b/sqlite/database.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/sqlite/database_test.go b/sqlite/database_test.go
index bb1b8a61..cda35256 100644
--- a/sqlite/database_test.go
+++ b/sqlite/database_test.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/sqlite/template.go b/sqlite/template.go
index abea1661..b7e80628 100644
--- a/sqlite/template.go
+++ b/sqlite/template.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/util/schema/schema.go b/util/schema/schema.go
index 99d310b4..026735be 100644
--- a/util/schema/schema.go
+++ b/util/schema/schema.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/util/sqlutil/debug.go b/util/sqlutil/debug.go
index f82a9857..4d46b52b 100644
--- a/util/sqlutil/debug.go
+++ b/util/sqlutil/debug.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/util/sqlutil/fetch.go b/util/sqlutil/fetch.go
index 357beba3..e5255dc9 100644
--- a/util/sqlutil/fetch.go
+++ b/util/sqlutil/fetch.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/util/sqlutil/result/result.go b/util/sqlutil/result/result.go
index 7badb0e7..4362481b 100644
--- a/util/sqlutil/result/result.go
+++ b/util/sqlutil/result/result.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/util/sqlutil/tx/tx.go b/util/sqlutil/tx/tx.go
index 533c5405..18ebbf3c 100644
--- a/util/sqlutil/tx/tx.go
+++ b/util/sqlutil/tx/tx.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2015 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2015 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
diff --git a/wrapper.go b/wrapper.go
index 058cf690..7a0ab8f5 100644
--- a/wrapper.go
+++ b/wrapper.go
@@ -1,4 +1,4 @@
-// Copyright (c) 2012-2014 José Carlos Nieto, https://menteslibres.net/xiam
+// Copyright (c) 2012-2014 The upper.io/db authors. All rights reserved.
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
-- 
GitLab