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

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

The newest version!
create table if not exists device
(
    id           uuid not null
        constraint device_id_pk primary key,
    device_id    text not null,
    device_type  text not null,
    display_name text,
    constraint device_id_uk unique (device_id, device_type)
);





© 2015 - 2025 Weber Informatics LLC | Privacy Policy