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

mysql.entityProperty.sql Maven / Gradle / Ivy

-- MySQL DDL to create table
CREATE TABLE {TABLENAME} ( 
    {ID}            bigint(20) AUTO_INCREMENT NOT NULL PRIMARY KEY,
    entityRef       varchar(255) NOT NULL,
    entityPrefix    varchar(255) NOT NULL,
    propertyName    varchar(255) NOT NULL,
    propertyValue   text NOT NULL,
    INDEX (entityRef, entityPrefix, propertyName) );




© 2015 - 2024 Weber Informatics LLC | Privacy Policy