Class: AddUidToUsers
- Inherits:
-
Debci::DB::LEGACY_MIGRATION
- Object
- AddUidToUsers
- Defined in:
- lib/debci/db/migrations/20210605000000_add_uid_to_users.rb
Instance Method Summary collapse
Instance Method Details
#down ⇒ Object
6 7 8 |
# File 'lib/debci/db/migrations/20210605000000_add_uid_to_users.rb', line 6 def down remove_column :users, :uid end |
#up ⇒ Object
2 3 4 |
# File 'lib/debci/db/migrations/20210605000000_add_uid_to_users.rb', line 2 def up add_column :users, :uid, :string, unique: true end |