From 8a89176b2b563ad20c21eea6f31cef01c46582dc Mon Sep 17 00:00:00 2001 From: pks Date: Sun, 16 May 2021 18:23:12 +0200 Subject: restart --- db-create.rb | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 db-create.rb (limited to 'db-create.rb') diff --git a/db-create.rb b/db-create.rb deleted file mode 100755 index a9bf771..0000000 --- a/db-create.rb +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env ruby - -require 'sqlite3' - -def main - db = SQLite3::Database.new ARGV[0] - - db.execute <<-SQL - create table power( - id INTEGER PRIMARY KEY, - timestamp DATETIME, - device_name TEXT, - device_location_primary TEXT, - device_location_secondary TEXT, - total FLOAT, - total_start_time DATETIME - ); - SQL - - db.close -end - - -main -- cgit v1.2.3