Skip to content

Commit eb38962

Browse files
authored
[TASK] Use the new location of the database schema file (#55)
1 parent ed405f2 commit eb38962

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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/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
@@ -50,7 +50,7 @@ before_script:
5050
echo "Creating the database and importing the database schema";
5151
mysql -e "CREATE DATABASE ${PHPLIST_DATABASE_NAME};";
5252
mysql -u root -e "GRANT ALL ON ${PHPLIST_DATABASE_NAME}.* TO '${PHPLIST_DATABASE_USER}'@'%';";
53-
mysql ${PHPLIST_DATABASE_NAME} < vendor/phplist/core/Database/Schema.sql;
53+
mysql ${PHPLIST_DATABASE_NAME} < vendor/phplist/core/resources/Database/Schema.sql;
5454
5555
script:
5656
- >

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 (#54)
1414
- Use the renamed phplist/core package (#53)
15-
- Adopt more of the default Symfony project structure (#49, #50, #51)
15+
- Adopt more of the default Symfony project structure (#49, #50, #51, #55)
1616

1717
### Deprecated
1818

0 commit comments

Comments
 (0)