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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
50c08d0e
Commit
50c08d0e
authored
Feb 22, 2018
by
Micaël Bergeron
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix the EE migrations
parent
a8df653f
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
62 deletions
+38
-62
db/migrate/20170825015534_add_file_store_to_lfs_objects.rb
db/migrate/20170825015534_add_file_store_to_lfs_objects.rb
+0
-35
db/migrate/20170918072949_add_file_store_job_artifacts.rb
db/migrate/20170918072949_add_file_store_job_artifacts.rb
+0
-14
db/migrate/20171214144320_add_store_column_to_uploads.rb
db/migrate/20171214144320_add_store_column_to_uploads.rb
+0
-12
db/migrate/20180222152310_port_object_storage_to_ce.rb
db/migrate/20180222152310_port_object_storage_to_ce.rb
+37
-0
db/schema.rb
db/schema.rb
+1
-1
No files found.
db/migrate/20170825015534_add_file_store_to_lfs_objects.rb
deleted
100644 → 0
View file @
a8df653f
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class
AddFileStoreToLfsObjects
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME
=
false
# When a migration requires downtime you **must** uncomment the following
# constant and define a short and easy to understand explanation as to why the
# migration requires downtime.
# DOWNTIME_REASON = ''
# When using the methods "add_concurrent_index", "remove_concurrent_index" or
# "add_column_with_default" you must disable the use of transactions
# as these methods can not run in an existing transaction.
# When using "add_concurrent_index" or "remove_concurrent_index" methods make sure
# that either of them is the _only_ method called in the migration,
# any other changes should go in a separate migration.
# This ensures that upon failure _only_ the index creation or removing fails
# and can be retried or reverted easily.
#
# To disable transactions uncomment the following line and remove these
# comments:
disable_ddl_transaction!
def
up
add_column
(
:lfs_objects
,
:file_store
,
:integer
)
end
def
down
remove_column
(
:lfs_objects
,
:file_store
)
end
end
db/migrate/20170918072949_add_file_store_job_artifacts.rb
deleted
100644 → 0
View file @
a8df653f
class
AddFileStoreJobArtifacts
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
disable_ddl_transaction!
DOWNTIME
=
false
def
up
add_column
(
:ci_job_artifacts
,
:file_store
,
:integer
)
end
def
down
remove_column
(
:ci_job_artifacts
,
:file_store
)
end
end
db/migrate/20171214144320_add_store_column_to_uploads.rb
deleted
100644 → 0
View file @
a8df653f
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class
AddStoreColumnToUploads
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
def
change
add_column
:uploads
,
:store
,
:integer
end
end
db/migrate/20180222152310_port_object_storage_to_ce.rb
0 → 100644
View file @
50c08d0e
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class
PortObjectStorageToCe
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME
=
false
def
up
unless
column_exists?
(
:ci_job_artifacts
,
:file_store
)
add_column
(
:ci_job_artifacts
,
:file_store
,
:integer
)
end
unless
column_exists?
(
:lfs_objects
,
:file_store
)
add_column
(
:lfs_objects
,
:file_store
,
:integer
)
end
unless
column_exists?
(
:uploads
,
:store
)
add_column
(
:uploads
,
:store
,
:integer
)
end
end
def
down
if
column_exists?
(
:ci_job_artifacts
,
:file_store
)
remove_column
(
:ci_job_artifacts
,
:file_store
)
end
if
column_exists?
(
:lfs_objects
,
:file_store
)
remove_column
(
:lfs_objects
,
:file_store
)
end
if
column_exists?
(
:uploads
,
:store
)
remove_column
(
:uploads
,
:store
)
end
end
end
db/schema.rb
View file @
50c08d0e
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
201802
1612103
0
)
do
ActiveRecord
::
Schema
.
define
(
version:
201802
2215231
0
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
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