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/20151103134857_create_lfs_objects.rb')
-rw-r--r--db/migrate/20151103134857_create_lfs_objects.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20151103134857_create_lfs_objects.rb b/db/migrate/20151103134857_create_lfs_objects.rb
deleted file mode 100644
index 2ba77e431a1..00000000000
--- a/db/migrate/20151103134857_create_lfs_objects.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# rubocop:disable all
-class CreateLfsObjects < ActiveRecord::Migration[4.2]
- DOWNTIME = false
-
- def change
- create_table :lfs_objects do |t|
- t.string :oid, null: false, unique: true
- t.integer :size, null: false
-
- t.timestamps null: true
- end
- end
-end