diff options
author | Nicolas BERNSTEIN <alexis211@gmail.com> | 2012-03-18 14:08:31 +0100 |
---|---|---|
committer | Nicolas BERNSTEIN <alexis211@gmail.com> | 2012-03-18 14:08:31 +0100 |
commit | ccff9ce8d8a2818699ce4e20a310986fc95ea022 (patch) | |
tree | c585ead91c894c621c73b63bc84012709e795151 /schema.sql | |
parent | 24547ccec6526fcef3cccb34bc35fb81f31236b3 (diff) | |
download | Bits-ccff9ce8d8a2818699ce4e20a310986fc95ea022.tar.gz Bits-ccff9ce8d8a2818699ce4e20a310986fc95ea022.zip |
Added a way of classifying images in folders.
Diffstat (limited to 'schema.sql')
-rw-r--r-- | schema.sql | 29 |
1 files changed, 25 insertions, 4 deletions
@@ -1,10 +1,10 @@ -- phpMyAdmin SQL Dump --- version 3.4.9 +-- version 3.4.10.1 -- http://www.phpmyadmin.net -- -- Client: localhost --- Généré le : Dim 12 Février 2012 à 19:40 --- Version du serveur: 5.5.20 +-- Généré le : Dim 18 Mars 2012 à 13:58 +-- Version du serveur: 5.5.21 -- Version de PHP: 5.3.10 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; @@ -203,13 +203,34 @@ CREATE TABLE IF NOT EXISTS `images` ( `extension` varchar(5) NOT NULL, `name` varchar(255) NOT NULL, `upl_date` date NOT NULL, + `folder` int(11) NOT NULL, + `comment` text NOT NULL, + `comment_html` text NOT NULL, PRIMARY KEY (`id`), - KEY `owner` (`owner`) + KEY `owner` (`owner`), + KEY `folder` (`folder`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ; -- -------------------------------------------------------- -- +-- Structure de la table `img_folders` +-- + +CREATE TABLE IF NOT EXISTS `img_folders` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `owner` int(11) NOT NULL, + `name` varchar(255) NOT NULL, + `comment` text NOT NULL, + `comment_html` text NOT NULL, + `public` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + KEY `owner` (`owner`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ; + +-- -------------------------------------------------------- + +-- -- Structure de la table `lists` -- |