You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
257 B
7 lines
257 B
sudo apt-get install sqlite3
|
|
|
|
sqlite3 light.db
|
|
|
|
BEGIN;
|
|
CREATE TABLE `light` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `devicename` CHARACTER(5) NOT NULL, `light` INTEGER NOT NULL, `timestamp` DATETIME NOT NULL, `tocloud` BOOLEAN DEFAULT 0 NOT NULL);
|
|
COMMIT;
|
|
|