mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-22 13:40:56 +08:00
This changes the license text for SQL files to be identical with the license text for C files.
10 lines
499 B
SQL
10 lines
499 B
SQL
-- This file and its contents are licensed under the Apache License 2.0.
|
|
-- Please see the included NOTICE for copyright information and
|
|
-- LICENSE-APACHE for a copy of the license.
|
|
|
|
CREATE SCHEMA IF NOT EXISTS _timescaledb_catalog;
|
|
CREATE SCHEMA IF NOT EXISTS _timescaledb_internal;
|
|
CREATE SCHEMA IF NOT EXISTS _timescaledb_cache;
|
|
CREATE SCHEMA IF NOT EXISTS _timescaledb_config;
|
|
GRANT USAGE ON SCHEMA _timescaledb_cache, _timescaledb_catalog, _timescaledb_internal, _timescaledb_config TO PUBLIC;
|