diff --git a/sql/changelog.xml b/sql/changelog.xml new file mode 100644 index 00000000000..7e6bd1606a1 --- /dev/null +++ b/sql/changelog.xml @@ -0,0 +1,33 @@ + + + + + + + + \ No newline at end of file diff --git a/sql/docker-compose.yml b/sql/docker-compose.yml new file mode 100644 index 00000000000..65efe3332cb --- /dev/null +++ b/sql/docker-compose.yml @@ -0,0 +1,25 @@ +# 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. + +name: texera-liquibase +services: + liquibase: + image: liquibase/liquibase:4.29 + volumes: + - .:/liquibase/sql + - ./changelog.xml:/liquibase/changelog.xml + command: --url=jdbc:postgresql://host.docker.internal:5432/texera_db --username=username --password=password --changeLogFile=changelog.xml update \ No newline at end of file