0% found this document useful (0 votes)
27 views3 pages

Base Donnee

This document contains the SQL code to create two database tables: 1) a "users" table with user account information like name, email, password etc and 2) a "guichetiers" table with information about bank tellers like name, address. It also includes sample data inserted into both tables.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views3 pages

Base Donnee

This document contains the SQL code to create two database tables: 1) a "users" table with user account information like name, email, password etc and 2) a "guichetiers" table with information about bank tellers like name, address. It also includes sample data inserted into both tables.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

-- phpMyAdmin SQL Dump

-- version 4.1.14
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Feb 20, 2024 at 10:58 AM
-- Server version: 5.6.17
-- PHP Version: 5.5.12

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 */;

--
-- Database: `bdd_db`
--

-- --------------------------------------------------------

--
-- Table structure for table `users`
--

CREATE TABLE IF NOT EXISTS `users` (


`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'user',
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`two_factor_secret` text COLLATE utf8mb4_unicode_ci,
`two_factor_recovery_codes` text COLLATE utf8mb4_unicode_ci,
`two_factor_confirmed_at` timestamp NULL DEFAULT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`current_team_id` bigint(20) unsigned DEFAULT NULL,
`profile_photo_path` varchar(2048) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
AUTO_INCREMENT=7 ;

--
-- Dumping data for table `users`
--

INSERT INTO `users` (`id`, `name`, `email`, `type`, `email_verified_at`,


`password`, `two_factor_secret`, `two_factor_recovery_codes`,
`two_factor_confirmed_at`, `remember_token`, `current_team_id`,
`profile_photo_path`, `created_at`, `updated_at`) VALUES
(1, 'benkhalifa', '[email protected]', 'admin', NULL,
'$2y$12$jk95nZAKgZm7gz8STKeVCecybi2.e0Cq6uGzNxSNHWckXOFk9q3DC', NULL, NULL, NULL,
NULL, NULL, NULL, '2023-12-22 00:58:14', '2024-02-20 08:46:10'),
(2, 'gandour', '[email protected]', 'admin', NULL,
'$2y$12$W2dffRhANYt66acy4UYpLOQcaoelKh3pZrNyoH5WZSym8w2j7dOWu', NULL, NULL, NULL,
NULL, NULL, NULL, '2023-12-22 09:52:39', '2023-12-22 09:52:39'),
(3, 'benkhalifa', '[email protected]', 'guichetier', NULL,
'$2y$12$718Te2sKz2gWaASNmceM0uPQfKw/kxWYFVlyZD/1cP4MA40G/UuF6', NULL, NULL, NULL,
NULL, NULL, NULL, '2023-12-22 09:56:20', '2023-12-22 09:56:20'),
(4, 'asmani', '[email protected]', 'admin', NULL,
'$2y$12$vKNqCZOGMECw5btJS2e5SeDaz78Hjmq2LRaCd/MXwVfQWjWnu0NQm', NULL, NULL, NULL,
NULL, NULL, NULL, '2023-12-22 16:36:22', '2023-12-22 16:36:22'),
(5, 'benkhalifa', '[email protected]', 'admin', NULL,
'$2y$12$8OrR8ZHlqps.VoNa7.V5VutVYBU0XhQTWOlwUSGcZd6M1JRzN.g.i', NULL, NULL, NULL,
NULL, NULL, NULL, '2023-12-22 19:04:05', '2023-12-22 19:04:05'),
(6, 'benkhalifa', '[email protected]', 'admin', NULL,
'$2y$12$BXdFQ1n2aiDlsRrrI5pYCOHjqNPjU5uqZ7gT6gTbLQFJwC9PhRfH6', NULL, NULL, NULL,
NULL, NULL, NULL, '2023-12-23 12:54:56', '2023-12-23 12:54:56');

/*!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 */;

////////////////////////////////////////////////////////
-- phpMyAdmin SQL Dump
-- version 4.1.14
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Feb 20, 2024 at 10:55 AM
-- Server version: 5.6.17
-- PHP Version: 5.5.12

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 */;

--
-- Database: `bdd_db`
--

-- --------------------------------------------------------

--
-- Table structure for table `guichetiers`
--

CREATE TABLE IF NOT EXISTS `guichetiers` (


`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`nom` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`prenom` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`adresse` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
AUTO_INCREMENT=37 ;

--
-- Dumping data for table `guichetiers`
--

INSERT INTO `guichetiers` (`id`, `nom`, `prenom`, `adresse`, `created_at`,


`updated_at`) VALUES
(29, 'fkfty', 'dk6od', 'ffygyy', '2024-02-19 13:22:10', '2024-02-20 08:43:50'),
(30, 'fghjkl', 'fghjkl', 'ffyg', '2024-02-19 13:22:18', '2024-02-19 13:22:18'),
(31, 'tyuio', 'tdtyd', 'gggg', '2024-02-19 13:22:28', '2024-02-19 13:22:28'),
(33, 'tyhujk', 'fghjk', 'fghj', '2024-02-19 13:22:47', '2024-02-19 13:22:47'),
(36, 'rfgh', 'fghj', 'fvgh', '2024-02-20 08:30:50', '2024-02-20 08:30:50');

/*!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 */;

You might also like