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/20160425045124_create_u2f_registrations.rb')
-rw-r--r--db/migrate/20160425045124_create_u2f_registrations.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/20160425045124_create_u2f_registrations.rb b/db/migrate/20160425045124_create_u2f_registrations.rb
deleted file mode 100644
index 9b48fc822b6..00000000000
--- a/db/migrate/20160425045124_create_u2f_registrations.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# rubocop:disable all
-class CreateU2fRegistrations < ActiveRecord::Migration[4.2]
- def change
- create_table :u2f_registrations do |t|
- t.text :certificate
- t.string :key_handle, index: true
- t.string :public_key
- t.integer :counter
- t.references :user, index: true, foreign_key: true
-
- t.timestamps null: false
- end
- end
-end