Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20230905174639_add_priority_to_user_achievements.rb')
-rw-r--r--db/migrate/20230905174639_add_priority_to_user_achievements.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20230905174639_add_priority_to_user_achievements.rb b/db/migrate/20230905174639_add_priority_to_user_achievements.rb
new file mode 100644
index 00000000000..4c3d1fb41fb
--- /dev/null
+++ b/db/migrate/20230905174639_add_priority_to_user_achievements.rb
@@ -0,0 +1,7 @@
+# frozen_string_literal: true
+
+class AddPriorityToUserAchievements < Gitlab::Database::Migration[2.1]
+ def change
+ add_column :user_achievements, :priority, :int, null: true, default: nil
+ end
+end