Voici la structure SQL actuelle minimale de Sycorax :
Structures des tables SQL de Sycorax
-
CREATE TABLE
Files
( -
file_id
mediumint(8) NOT NULL AUTO_INCREMENT, -
file_path
mediumtext NOT NULL, -
tune_id
mediumint(8) NOT NULL, -
PRIMARY KEY (
file_id
), -
KEY
tune_id
(tune_id
), -
KEY
file_path
(file_path
(255)) -
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-
CREATE TABLE
Tunes
( -
tune_id
mediumint(8) NOT NULL AUTO_INCREMENT, -
tune_by
varchar(255) NOT NULL, -
tune_title
varchar(255) NOT NULL, -
tune_comment
varchar(255) NOT NULL, -
PRIMARY KEY (
tune_id
) -
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Sycorax est distribué sous license BSD.
Si vous souhaitez modifier quelque chose, c’est dans DatabaseUpdate.cs (Sycorax Library) que cela se passe.
One thought on Structure SQL de Sycorax