mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-24 20:16:08 +10:00
Merge branch 'members_table_timestamps' into 'master'
Add missing timestamps to the 'members' table
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 c8e78d972a 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.
See merge request !1272
This commit is contained in:
@@ -41,6 +41,7 @@ v 7.5.0
|
||||
- Display renamed files in diff views (Vinnie Okada)
|
||||
- Fix raw view for public snippets
|
||||
- Use secret token with GitLab internal API.
|
||||
- Add missing timestamps to 'members' table
|
||||
|
||||
v 7.4.3
|
||||
- Fix raw snippets view
|
||||
|
||||
@@ -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
|
||||
+1
-1
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user