123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- -- phpMyAdmin SQL Dump
- -- version 4.1.3
- -- http://www.phpmyadmin.net
- --
- -- Client : localhost:3306
- -- Généré le : Jeu 11 Décembre 2014 à 18:23
- -- Version du serveur : 5.1.73-1
- -- Version de PHP : 5.3.3-7+squeeze19
-
- SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
- SET time_zone = "+00:00";
-
-
- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
- /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
- /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
- /*!40101 SET NAMES utf8 */;
-
- --
- -- Base de données : `api.vdm`
- --
-
- -- --------------------------------------------------------
-
- --
- -- Structure de la table `api_keys`
- --
-
- CREATE TABLE IF NOT EXISTS `api_keys` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `key` varchar(128) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
- -- --------------------------------------------------------
-
- --
- -- Structure de la table `confirms`
- --
-
- CREATE TABLE IF NOT EXISTS `confirms` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `confirmation` tinyint(1) NOT NULL,
- `status` int(11) NOT NULL,
- `user` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `status` (`status`,`user`),
- KEY `user` (`user`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
- -- --------------------------------------------------------
-
- --
- -- Structure de la table `status`
- --
-
- CREATE TABLE IF NOT EXISTS `status` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `status` longtext NOT NULL,
- `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
- `user` int(11) NOT NULL,
- `longitude` float DEFAULT NULL,
- `latitude` float DEFAULT NULL,
- `media` varchar(256) DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `user` (`user`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
- -- --------------------------------------------------------
-
- --
- -- Structure de la table `tokens`
- --
-
- CREATE TABLE IF NOT EXISTS `tokens` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `token` varchar(128) NOT NULL,
- `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
- `user` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `user` (`user`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
- -- --------------------------------------------------------
-
- --
- -- Structure de la table `users`
- --
-
- CREATE TABLE IF NOT EXISTS `users` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `username` varchar(255) NOT NULL,
- `password` varchar(128) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-
- --
- -- Contraintes pour les tables exportées
- --
-
- --
- -- Contraintes pour la table `confirms`
- --
- ALTER TABLE `confirms`
- ADD CONSTRAINT `confirm_user_id` FOREIGN KEY (`user`) REFERENCES `users` (`id`),
- ADD CONSTRAINT `confirm_status_id` FOREIGN KEY (`status`) REFERENCES `status` (`id`);
-
- --
- -- Contraintes pour la table `status`
- --
- ALTER TABLE `status`
- ADD CONSTRAINT `status_user_id` FOREIGN KEY (`user`) REFERENCES `users` (`id`);
-
- --
- -- Contraintes pour la table `tokens`
- --
- ALTER TABLE `tokens`
- ADD CONSTRAINT `token_user_id` FOREIGN KEY (`user`) REFERENCES `users` (`id`);
-
- /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
- /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
- /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-
- INSERT INTO `api_keys` (`key`) VALUES('demo42')
|