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