summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2014-11-21 14:52:57 +0100
committerJacob Vosmaer <contact@jacobvosmaer.nl>2014-11-21 16:14:14 +0100
commit383c6b29069dc3deb6e6b80cd0e26d5904a08313 (patch)
treef5e9d35e5fe089b7733ef9e7ff7d4b84b890f09d
parent52a27e740d6fabe1ddb05e1e92e1fc447155a231 (diff)
downloadgitlab-ce-383c6b29069dc3deb6e6b80cd0e26d5904a08313.tar.gz
Add missing timestamps to the 'members' table
-rw-r--r--CHANGELOG3
-rw-r--r--db/migrate/20141121133009_add_timestamps_to_members.rb15
-rw-r--r--db/schema.rb2
3 files changed, 19 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 3cd32a75dde..3734611e04c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+v 7.5.1
+ - Add missing timestamps to 'members' table
+
v 7.5.0
- API: Add support for Hipchat (Kevin Houdebert)
- Add time zone configuration on gitlab.yml (Sullivan Senechal)
diff --git a/db/migrate/20141121133009_add_timestamps_to_members.rb b/db/migrate/20141121133009_add_timestamps_to_members.rb
new file mode 100644
index 00000000000..ef6d4dedf32
--- /dev/null
+++ b/db/migrate/20141121133009_add_timestamps_to_members.rb
@@ -0,0 +1,15 @@
+# In 20140914145549_migrate_to_new_members_model.rb we forgot to set the
+# created_at and updated_at times for new records in the 'members' table. This
+# became a problem after commit c8e78d972a5a628870eefca0f2ccea0199c55bda which
+# was added in GitLab 7.5. With this migration we ensure that all rows in
+# 'members' have at least some created_at and updated_at timestamp.
+class AddTimestampsToMembers < ActiveRecord::Migration
+ def up
+ execute "UPDATE members SET created_at = NOW() WHERE created_at is NULL"
+ execute "UPDATE members SET updated_at = NOW() WHERE updated_at is NULL"
+ end
+
+ def down
+ # no change
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
index 8ddebc5132a..68d1080b6ee 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20141007100818) do
+ActiveRecord::Schema.define(version: 20141121133009) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"