All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.migration.V1__Create_driver_connection_table.sql Maven / Gradle / Ivy

There is a newer version: 6.0.3
Show newest version
create table drivers (
    id int not null primary key auto_increment,
    name varchar(200) not null unique,
    type varchar(200) not null,
    url varchar(200) not null,
    databasename varchar(200) not null,
    username varchar(200) not null,
    password   varchar(200) not null
);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy