Skip to content

Commit c7c8864

Browse files
oliverkleeSam Tuke
authored andcommitted
[TASK] Use the new location of the database schema file (#79)
Also update the phplist/core and phplist/rest-api dependencies.
1 parent 240fc63 commit c7c8864

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ named `phplist`, and the password is `batterystaple`, the command looks like
8585
this:
8686

8787
```bash
88-
mysql -u phplist_test --password=batterystaple phplist_test < vendor/phplist/core/Database/Schema.sql
88+
mysql -u phplist_test --password=batterystaple phplist_test < vendor/phplist/core/resources/Database/Schema.sql
8989
```
9090

9191
When running the integration tests, you will need to specify the database name

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ before_script:
4747
echo "Creating the database and importing the database schema";
4848
mysql -e "CREATE DATABASE ${PHPLIST_DATABASE_NAME};";
4949
mysql -u root -e "GRANT ALL ON ${PHPLIST_DATABASE_NAME}.* TO '${PHPLIST_DATABASE_USER}'@'%';";
50-
mysql ${PHPLIST_DATABASE_NAME} < vendor/phplist/core/Database/Schema.sql;
50+
mysql ${PHPLIST_DATABASE_NAME} < vendor/phplist/core/resources/Database/Schema.sql;
5151
5252
script:
5353
- >

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1212
### Changed
1313
- Move the PHPUnit configuration file (#78)
1414
- Use the renamed phplist/core package (#77)
15-
- Adopt more of the default Symfony project structure (#73, #74, #75)
15+
- Adopt more of the default Symfony project structure (#73, #74, #75, #79)
1616

1717
### Deprecated
1818

composer.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)