Skip to content

Commit

Permalink
Fixing db sql syntax error.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonjampen committed Feb 5, 2024
1 parent 219ed44 commit 2df000f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions db/db_v2.0-v2.1.sql
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,7 @@ COMMIT;
---
--- Add last_active_version_id column to users table
---
ALTER TABLE `users`
ADD `last_active_version_id` INT NOT NULL DEFAULT '0' AFTER `password`;
ALTER TABLE `users` ADD `last_active_version_id` INT NOT NULL DEFAULT '0' AFTER `password`;


/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
Expand Down

0 comments on commit 2df000f

Please sign in to comment.