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

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

There is a newer version: 6.0.3
Show newest version
create table ds_sets (
  id int not null primary key auto_increment,
  name varchar(200) not null unique
);

alter table drivers rename to data_sources;

alter table data_sources add column ds_set_id int not null;

alter table data_sources add column is_default int default 0;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy