summaryrefslogtreecommitdiff
path: root/db-create.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db-create.rb')
-rwxr-xr-xdb-create.rb24
1 files changed, 0 insertions, 24 deletions
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