2024-04-03 12:05:44 -07:00

9 lines
209 B
SQL

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