diff --git a/db/migrate/20240106000000_migrate_data_from_workspaces_url_column.rb b/db/migrate/20240106000000_migrate_data_from_workspaces_url_column.rb
index e5f5ffc376e1050dd6493fa97f60331d31c7895e..369c262be4ecaecdfaaf8ffd7717c0becd451560 100644
--- a/db/migrate/20240106000000_migrate_data_from_workspaces_url_column.rb
+++ b/db/migrate/20240106000000_migrate_data_from_workspaces_url_column.rb
@@ -13,7 +13,7 @@ def up
     each_batch_range('workspaces', scope: ->(table) { table.all }, of: BATCH_SIZE) do |min, max|
       execute(<<~SQL)
         UPDATE workspaces
-        SET url_prefix = CONCAT('https://#{DEFAULT_PORT}-', name),
+        SET url_prefix = CONCAT('#{DEFAULT_PORT}-', name),
             dns_zone = remote_development_agent_configs.dns_zone,
             url_query_string = CASE
                                     WHEN POSITION('?' IN url) > 0
diff --git a/db/migrate/20240123000000_update_workspaces_url_prefix_column.rb b/db/migrate/20240123000000_update_workspaces_url_prefix_column.rb
new file mode 100644
index 0000000000000000000000000000000000000000..084a7e4b0b9006a6d0e14a264127ff43d6221e46
--- /dev/null
+++ b/db/migrate/20240123000000_update_workspaces_url_prefix_column.rb
@@ -0,0 +1,20 @@
+# frozen_string_literal: true
+
+class UpdateWorkspacesUrlPrefixColumn < Gitlab::Database::Migration[2.2]
+  milestone '16.8'
+  disable_ddl_transaction!
+
+  restrict_gitlab_migration gitlab_schema: :gitlab_main
+
+  def up
+    execute(<<~SQL)
+      UPDATE workspaces
+      SET url_prefix=REPLACE(url_prefix, 'https://', '')
+      WHERE url_prefix LIKE 'https://%'
+    SQL
+  end
+
+  def down
+    # no-op
+  end
+end
diff --git a/db/schema_migrations/20240123000000 b/db/schema_migrations/20240123000000
new file mode 100644
index 0000000000000000000000000000000000000000..ab013634ab04263444c74547df7c21f40199794d
--- /dev/null
+++ b/db/schema_migrations/20240123000000
@@ -0,0 +1 @@
+554281098ec89db0f0bc0402e34c1fe413003afa63b0001da8d5ad772dd9725c
\ No newline at end of file