Skip to content

Commit 0f4ada2

Browse files
committed
Add id column as primary key for unique_id_users
This is required for Elide to use this as a entity and get access to the timestamps.
1 parent babeafb commit 0f4ada2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
alter table unique_id_users
2+
add id int auto_increment first,
3+
drop primary key,
4+
add constraint unique_id_users_pk
5+
primary key (id);

0 commit comments

Comments
 (0)