drop table if exists TECNNotificationsUsers;

create table TECNNotificationsUsers (
    Id integer primary key,
    UserId integer not null
);

insert into TECNNotificationsUsers (UserId)
values (1), (2), (3);