S2GRAPH-4: manually add apache license header on schema files
Project: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/commit/9d400729 Tree: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/tree/9d400729 Diff: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/diff/9d400729 Branch: refs/heads/S2GRAPH-4 Commit: 9d4007292a7de8cc0c4bb06cfa5b853a8f97497c Parents: ba70742 Author: SteamShon <[email protected]> Authored: Mon Dec 28 12:31:04 2015 +0900 Committer: SteamShon <[email protected]> Committed: Mon Dec 28 12:31:04 2015 +0900 ---------------------------------------------------------------------- s2core/migrate/mysql/schema.sql | 15 +++++++++++++++ s2core/src/main/resources/create_model.hql | 15 +++++++++++++++ 2 files changed, 30 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/9d400729/s2core/migrate/mysql/schema.sql ---------------------------------------------------------------------- diff --git a/s2core/migrate/mysql/schema.sql b/s2core/migrate/mysql/schema.sql index 06c029b..7898c89 100644 --- a/s2core/migrate/mysql/schema.sql +++ b/s2core/migrate/mysql/schema.sql @@ -1,3 +1,18 @@ +-- Licensed to the Apache Software Foundation (ASF) under one or more +-- contributor license agreements. See the NOTICE file distributed with +-- this work for additional information regarding copyright ownership. +-- The ASF licenses this file to You under the Apache License, Version 2.0 +-- (the "License"); you may not use this file except in compliance with +-- the License. You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. + CREATE DATABASE IF NOT EXISTS graph_dev; CREATE USER 'graph'@'%' IDENTIFIED BY 'graph'; http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/9d400729/s2core/src/main/resources/create_model.hql ---------------------------------------------------------------------- diff --git a/s2core/src/main/resources/create_model.hql b/s2core/src/main/resources/create_model.hql index df8e4dc..b79850b 100644 --- a/s2core/src/main/resources/create_model.hql +++ b/s2core/src/main/resources/create_model.hql @@ -1,2 +1,17 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + create 'models-dev', {NAME => 'm'} create 's2graph-dev', {NAME => 'e'}, {NAME => 'v'}
