wn.sqltemplates.sqlite.create.sources-create.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tosql Show documentation
Show all versions of tosql Show documentation
Export Wordnet model to SQL files.
The newest version!
CREATE TABLE sources (
idsource INT NOT NULL,
name VARCHAR(45) NOT NULL,
version VARCHAR(12) DEFAULT NULL,
wnversion VARCHAR(12) DEFAULT NULL,
url TEXT DEFAULT NULL,
provider VARCHAR(45) DEFAULT NULL,
reference TEXT DEFAULT NULL,
PRIMARY KEY (idsource)
);