PHP Classes

File: tests/fixtures/create_mysql.sql

Recommend this page to a friend!
  Classes of Punto Waskito   PHP CRUD API   tests/fixtures/create_mysql.sql   Download  
File: tests/fixtures/create_mysql.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP CRUD API
Provide API to manipulate database table records
Author: By
Last change:
Date: 2 years ago
Size: 257 bytes
 

Contents

Class file image Download
CREATE DATABASE `php-crud-api` CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; CREATE USER 'php-crud-api'@'localhost' IDENTIFIED BY 'php-crud-api'; GRANT ALL PRIVILEGES ON `php-crud-api`.* TO 'php-crud-api'@'localhost' WITH GRANT OPTION; FLUSH PRIVILEGES;