Merge branch '14873-api-rails5-upgrade'
[arvados.git] / services / api / db / migrate / 20140818125735_add_not_null_constraint_to_group_name.rb
index 13224205e6df8c904749a3cada55a5c410ba7613..9f003ba8d6ca884116b0a540898659981562f41b 100644 (file)
@@ -2,7 +2,7 @@
 #
 # SPDX-License-Identifier: AGPL-3.0
 
-class AddNotNullConstraintToGroupName < ActiveRecord::Migration
+class AddNotNullConstraintToGroupName < ActiveRecord::Migration[4.2]
   def change
     ActiveRecord::Base.connection.execute("update groups set name=uuid where name is null or name=''")
     change_column_null :groups, :name, false