VRFS-2916 cohort model/table
This commit is contained in:
parent
5fa37abfb3
commit
b38370589f
|
|
@ -0,0 +1,4 @@
|
|||
class Cohort < ActiveRecord::Base
|
||||
|
||||
end
|
||||
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
CREATE TABLE cohorts {
|
||||
id VARCHAR(64) PRIMARY KEY DEFAULT uuid_generate_v4(),
|
||||
|
||||
start_date TIMESTAMP NOT NULL,
|
||||
end_date TIMESTAMP NOT NULL,
|
||||
group_type VARCHAR(64) NOT NULL,
|
||||
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
};
|
||||
Loading…
Reference in New Issue