* perfdata commit

This commit is contained in:
Seth Call 2013-04-16 19:34:37 -05:00
parent 226f4b42bb
commit 3733bc0c2d
1 changed files with 10 additions and 0 deletions

10
up/perf_data.sql Normal file
View File

@ -0,0 +1,10 @@
-- this is a history table, so no fk's declared
-- data/datum. but I don't care
CREATE TABLE music_session_perf_data (
id VARCHAR(64) PRIMARY KEY DEFAULT uuid_generate_v4(),
music_session_id VARCHAR(64),
client_id VARCHAR(64),
uri VARCHAR(1000),
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);