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:
authorRobert Speicher <rspeicher@gmail.com>2015-09-20 04:16:18 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-09-20 04:16:18 +0300
commit259851c0d601632ad02a9f6ac0d59276552570b9 (patch)
treeee51f875433e2df76f88a1ae8bad83225afe6400 /db/migrate/20150920010715_add_consumed_timestep_to_users.rb
parent69723d20024821fb4206e899ffa3acd2da690315 (diff)
Bump devise-two-factor to 2.0.0
Addresses internal https://dev.gitlab.org/gitlab/gitlabhq/issues/2605 See https://github.com/tinfoil/devise-two-factor/pull/43
Diffstat (limited to 'db/migrate/20150920010715_add_consumed_timestep_to_users.rb')
-rw-r--r--db/migrate/20150920010715_add_consumed_timestep_to_users.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20150920010715_add_consumed_timestep_to_users.rb b/db/migrate/20150920010715_add_consumed_timestep_to_users.rb
new file mode 100644
index 00000000000..c8438b3f6aa
--- /dev/null
+++ b/db/migrate/20150920010715_add_consumed_timestep_to_users.rb
@@ -0,0 +1,5 @@
+class AddConsumedTimestepToUsers < ActiveRecord::Migration
+ def change
+ add_column :users, :consumed_timestep, :integer
+ end
+end