drop table if exists TECNNotificationUsers; create table TECNNotificationUsers ( Id integer primary key, UserId integer not null ); insert into TECNNotificationUsers (UserId) values (1), (2), (3);