add ALv2 header to example-database.script
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/2f518ae2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/2f518ae2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/2f518ae2 Branch: refs/heads/ignite-406 Commit: 2f518ae2a19165b89c8e115970b022620766fda7 Parents: 4573475 Author: Artem Shutak <ashu...@gridgain.com> Authored: Thu Mar 12 17:34:50 2015 +0300 Committer: Artem Shutak <ashu...@gridgain.com> Committed: Thu Mar 12 17:34:50 2015 +0300 ---------------------------------------------------------------------- examples/config/store/example-database.script | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/2f518ae2/examples/config/store/example-database.script ---------------------------------------------------------------------- diff --git a/examples/config/store/example-database.script b/examples/config/store/example-database.script index 781e69c..1397f28 100644 --- a/examples/config/store/example-database.script +++ b/examples/config/store/example-database.script @@ -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 table PERSONS(id bigint not null, first_name varchar(50), last_name varchar(50), PRIMARY KEY(id)); insert into PERSONS(id, first_name, last_name) values(1, 'first-name-1', 'last-name-1');