mirror of
https://github.com/php/web-bugs.git
synced 2026-03-24 15:52:09 +01:00
This separates the SQL files according to its functionality: - database.sql for creating only database - schema.sql for creating only database schema - fixtures.sql for inserting only data fixtures This helps in building project from scratch with empty database with only schema to insert custom development fixtures.
3 lines
88 B
SQL
3 lines
88 B
SQL
CREATE DATABASE phpbugsdb;
|
|
GRANT ALL PRIVILEGES on phpbugsdb.* to 'nobody'@'localhost';
|