Commit 425ad63176164141399f5487f1554ac8cd6f98be
1 parent
51784514
Exists in
master
and in
21 other branches
api: remove duplicated migration
Showing
1 changed file
with
0 additions
and
11 deletions
Show diff stats
db/migrate/20140407013817_add_private_token_info_to_users.rb
... | ... | @@ -1,11 +0,0 @@ |
1 | -class AddPrivateTokenInfoToUsers < ActiveRecord::Migration | |
2 | - def self.up | |
3 | - add_column :users, :private_token, :string | |
4 | - add_column :users, :private_token_generated_at, :datetime | |
5 | - end | |
6 | - | |
7 | - def self.down | |
8 | - remove_column :users, :private_token | |
9 | - remove_column :users, :private_token_generated_at | |
10 | - end | |
11 | -end |