You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@s2graph.apache.org by st...@apache.org on 2018/05/11 03:05:47 UTC

[07/11] incubator-s2graph git commit: add options on ServiceColumn at schema.sql

add options on ServiceColumn at schema.sql


Project: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/commit/f6b0740f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/tree/f6b0740f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/diff/f6b0740f

Branch: refs/heads/master
Commit: f6b0740f50541f875779d730f0df2c1e0df421e0
Parents: be83d07
Author: DO YUNG YOON <st...@apache.org>
Authored: Wed May 9 23:19:52 2018 +0900
Committer: DO YUNG YOON <st...@apache.org>
Committed: Wed May 9 23:19:52 2018 +0900

----------------------------------------------------------------------
 dev_support/graph_mysql/schema.sql | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/f6b0740f/dev_support/graph_mysql/schema.sql
----------------------------------------------------------------------
diff --git a/dev_support/graph_mysql/schema.sql b/dev_support/graph_mysql/schema.sql
index 5781f3b..be9500e 100644
--- a/dev_support/graph_mysql/schema.sql
+++ b/dev_support/graph_mysql/schema.sql
@@ -59,6 +59,7 @@ CREATE TABLE `service_columns` (
 	`column_name` varchar(64) NOT NULL,
 	`column_type` varchar(8) NOT NULL,
 	`schema_version` varchar(8) NOT NULL default 'v2',
+	`options` text,
 	PRIMARY KEY (`id`),
 	UNIQUE KEY `ux_service_id_column_name` (`service_id`, `column_name`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;