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

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

There is a newer version: 6.0.3
Show newest version
BEGIN;

drop table if exists `partitions`;
CREATE TABLE `partitions` (
    `id` INTEGER PRIMARY KEY auto_increment,
    `name` varchar(40) NOT NULL,
    `description` varchar(100),
    `cost` INTEGER, -- populate manually ?
    `query` text,
    `source_id` INT NOT NULL,
    `destination_id` INT NOT NULL,
    `schema_name` VARCHAR(40),
    `table_name` VARCHAR(40)
);

COMMIT;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy