Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
679bf1c8
Commit
679bf1c8
authored
Jan 16, 2020
by
Francisco Javier López
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Merge branch 'fj-remove-storage-version-from-snippets' into 'master'"
This reverts merge request !23004
parent
570c89dc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
31 deletions
+2
-31
changelogs/unreleased/fj-remove-storage-version-from-snippets.yml
...gs/unreleased/fj-remove-storage-version-from-snippets.yml
+0
-5
db/post_migrate/20200114180546_remove_storage_version_column_from_snippets.rb
...0114180546_remove_storage_version_column_from_snippets.rb
+0
-25
db/schema.rb
db/schema.rb
+2
-1
No files found.
changelogs/unreleased/fj-remove-storage-version-from-snippets.yml
deleted
100644 → 0
View file @
570c89dc
---
title
:
Remove storage_version column from snippets
merge_request
:
23004
author
:
type
:
changed
db/post_migrate/20200114180546_remove_storage_version_column_from_snippets.rb
deleted
100644 → 0
View file @
570c89dc
# frozen_string_literal: true
class
RemoveStorageVersionColumnFromSnippets
<
ActiveRecord
::
Migration
[
5.2
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
disable_ddl_transaction!
def
up
return
unless
column_exists?
(
:snippets
,
:storage_version
)
remove_column
:snippets
,
:storage_version
end
def
down
add_column_with_default
(
# rubocop:disable Migration/AddColumnWithDefault
:snippets
,
:storage_version
,
:integer
,
default:
2
,
allow_null:
false
)
end
end
db/schema.rb
View file @
679bf1c8
...
...
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
2020_01_14_1
80546
)
do
ActiveRecord
::
Schema
.
define
(
version:
2020_01_14_1
13341
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"pg_trgm"
...
...
@@ -3838,6 +3838,7 @@ ActiveRecord::Schema.define(version: 2020_01_14_180546) do
t
.
string
"encrypted_secret_token_iv"
,
limit:
255
t
.
boolean
"secret"
,
default:
false
,
null:
false
t
.
string
"repository_storage"
,
limit:
255
,
default:
"default"
,
null:
false
t
.
integer
"storage_version"
,
default:
2
,
null:
false
t
.
index
[
"author_id"
],
name:
"index_snippets_on_author_id"
t
.
index
[
"content"
],
name:
"index_snippets_on_content_trigram"
,
opclass: :gin_trgm_ops
,
using: :gin
t
.
index
[
"created_at"
],
name:
"index_snippets_on_created_at"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment