summaryrefslogtreecommitdiff
path: root/db/migrate/20220726171440_create_ghost_user_migrations.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20220726171440_create_ghost_user_migrations.rb')
-rw-r--r--db/migrate/20220726171440_create_ghost_user_migrations.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20220726171440_create_ghost_user_migrations.rb b/db/migrate/20220726171440_create_ghost_user_migrations.rb
new file mode 100644
index 00000000000..c64ca4f7765
--- /dev/null
+++ b/db/migrate/20220726171440_create_ghost_user_migrations.rb
@@ -0,0 +1,12 @@
+# frozen_string_literal: true
+
+class CreateGhostUserMigrations < Gitlab::Database::Migration[2.0]
+ def change
+ create_table :ghost_user_migrations do |t|
+ t.bigint :user_id, index: { unique: true }, null: false
+ t.bigint :initiator_user_id
+ t.timestamps_with_timezone null: false
+ t.boolean :hard_delete, default: false, null: false
+ end
+ end
+end