view flys-backend/src/main/java/de/intevation/flys/App.java @ 4930:28f992c0f937 dami

SCHEMA CHANGES: Add tables for Hochwasserschutzanlagen This adds the first draft of Hochwasserschutzanlagen tables hws_points and hws_lines which replace the old hws table and also lookup tables fed_states and hws_kinds.
author Andre Heinecke <aheinecke@intevation.de>
date Mon, 28 Jan 2013 17:42:18 +0100
parents 76c75c8b9ee0
children
line wrap: on
line source
package de.intevation.flys;

import de.intevation.flys.backend.SessionFactoryProvider;
import de.intevation.flys.backend.FLYSCredentials;

import org.hibernate.cfg.Configuration;

import org.hibernate.dialect.resolver.DialectFactory;

public class App
{
    public static void dumpSchema(Configuration cfg) {
        System.out.println("BEGIN;");

        String [] setupScript = cfg.generateSchemaCreationScript(
            DialectFactory.constructDialect(
                FLYSCredentials.getDefault().getDialect()));

        for (String line: setupScript) {
            System.out.println(line + ";");
        }

        System.out.println("COMMIT;");
    }

    public static void main(String [] args) {
        dumpSchema(SessionFactoryProvider.createConfiguration());
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org