Structure SQL de Sycorax

Voici la structure SQL actuelle minimale de Sycorax :

Structures des tables SQL de Sycorax
  1. CREATE TABLE Files (
  2.   file_id mediumint(8) NOT NULL AUTO_INCREMENT,
  3.   file_path mediumtext NOT NULL,
  4.   tune_id mediumint(8) NOT NULL,
  5.   PRIMARY KEY  (file_id),
  6.   KEY tune_id (tune_id),
  7.   KEY file_path (file_path(255))
  8. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  9. CREATE TABLE Tunes (
  10.   tune_id mediumint(8) NOT NULL AUTO_INCREMENT,
  11.   tune_by varchar(255) NOT NULL,
  12.   tune_title varchar(255) NOT NULL,
  13.   tune_comment varchar(255) NOT NULL,
  14.   PRIMARY KEY  (tune_id)
  15. ) 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

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.