Skip to content

Instantly share code, notes, and snippets.

@robert8138
Created March 19, 2016 22:52
Show Gist options
  • Save robert8138/642c4ed3fffe222591c3 to your computer and use it in GitHub Desktop.
Save robert8138/642c4ed3fffe222591c3 to your computer and use it in GitHub Desktop.
DROP TABLE IF EXISTS dim_events;
CREATE TABLE dim_events (
id INTEGER PRIMARY KEY AUTOINCREMENT,
date DATETIME,
duration REAL,
event_name TEXT
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment