9 lines
206 B
SQL
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); |