File: make_mysql.sql

package info (click to toggle)
digitemp 3.7.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 828 kB
  • sloc: ansic: 7,254; perl: 644; makefile: 118; python: 67; sh: 39; sql: 11
file content (10 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
CREATE table digitemp (
  dtKey int(11) NOT NULL auto_increment,
  time timestamp NOT NULL,
  SerialNumber varchar(17) NOT NULL,
  Fahrenheit decimal(6,2) NOT NULL,
  PRIMARY KEY (dtKey),
  KEY serial_key (SerialNumber),
  KEY time_key (time)
);