2024-03-29 16:36:57 -07:00

9 lines
206 B
SQL

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