History log of /web-bugs/sql/fixtures.sql (Results 1 – 3 of 3)
Revision Date Author Comments
# fd1338e3 25-May-2019 Peter Kokot

Revert "Add automatic fixtures generator importer"

This reverts commit 5cdac95adc49562291a873c8704de3ceb0d9d398.

Due to the https://github.com/php/web-bugs/pull/77 discussion and

Revert "Add automatic fixtures generator importer"

This reverts commit 5cdac95adc49562291a873c8704de3ceb0d9d398.

Due to the https://github.com/php/web-bugs/pull/77 discussion and
request from a prominent member of the PHP group - Kalle - I'm reverting
this awesome addition because it caused too many conflicts and issues.
So it is not worth of investing more from my side into this neither
having a ruined experience further on from any side here.

This fix has been really helpful with some development ways but people
who maintain this app further better have peace of mind...

show more ...


# 5cdac95a 06-May-2019 Peter Kokot

Add automatic fixtures generator importer

When developing site locally, developer needs to have data sets to run
manual tests, see how the app is built, and similar. The new additional

Add automatic fixtures generator importer

When developing site locally, developer needs to have data sets to run
manual tests, see how the app is built, and similar. The new additional
command line command using Symfony/Console component creates a main
scripts/console entry point for running Commands. Initial set of demo
fixtures data is generated using the faker library and includes most
data needed to use and test application manually in the local
environment.

show more ...


# 16bea4f8 24-Oct-2018 Peter Kokot

Refactor SQL files

This separates the SQL files according to its functionality:
- database.sql for creating only database
- schema.sql for creating only database schema
- fixture

Refactor SQL files

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.

show more ...