41 lines
833 B
Plaintext
41 lines
833 B
Plaintext
create table Receive
|
|
(
|
|
SpotID int
|
|
constraint Receive_pk
|
|
primary key,
|
|
Timestamp TEXT,
|
|
Reporter TEXT,
|
|
reporterGrid TEXT,
|
|
SNR int,
|
|
Freq float,
|
|
CallSign TEXT,
|
|
Power int,
|
|
Grid TEXT,
|
|
Drift int,
|
|
Distance int,
|
|
Azimuth int,
|
|
Band int,
|
|
Version float,
|
|
Code int
|
|
);
|
|
|
|
create table Sent
|
|
(
|
|
SpotID int
|
|
constraint Receive_pk
|
|
primary key,
|
|
Timestamp TEXT,
|
|
Reporter TEXT,
|
|
reporterGrid TEXT,
|
|
SNR int,
|
|
Freq float,
|
|
CallSign TEXT,
|
|
Power int,
|
|
Grid TEXT,
|
|
Drift int,
|
|
Distance int,
|
|
Azimuth int,
|
|
Band int,
|
|
Version float,
|
|
Code int
|
|
); |