Commit fae28471 authored by manzarul.haque's avatar manzarul.haque
Browse files

issues #SB-1168 feat: adding to store channel value

No related merge requests found
Showing with 4 additions and 1 deletion
+4 -1
......@@ -633,4 +633,7 @@ ALTER TABLE sunbird.geo_location ADD userCount int;
insert into sunbird.system_settings (id,field,value) values ('phoneUnique','phoneUnique','false');
insert into sunbird.system_settings (id,field,value) values ('emailUnique','emailUnique','false');
// Dec 6th 2017
ALTER TABLE sunbird.geo_location ADD userCountTTL text;
\ No newline at end of file
ALTER TABLE sunbird.geo_location ADD userCountTTL text;
// adding new column in client-info to save the channel
ALTER TABLE sunbird.client_info ADD channel text;
CREATE INDEX inx_ci_clientchannel ON sunbird.client_info(channel);
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment