Added database to keep track of videos already uploaded, so that only new videos send out notifications
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2022-03-08 12:12:21 -05:00
parent 803ad25cda
commit c4afe6f08e
9 changed files with 1751 additions and 373 deletions

28
phinx.php Normal file
View File

@ -0,0 +1,28 @@
<?php
return
[
'paths' => [
'migrations' => '%%PHINX_CONFIG_DIR%%/db/migrations',
'seeds' => '%%PHINX_CONFIG_DIR%%/db/seeds'
],
'environments' => [
'default_migration_table' => 'phinxlog',
'default_environment' => 'development',
'production' => [
'adapter' => 'sqlite',
'name' => './data/pigeon',
'suffix' => 'db',
],
'development' => [
'adapter' => 'sqlite',
'name' => './data/pigeon',
'suffix' => 'db',
],
'testing' => [
'adapter' => 'sqlite',
'memory' => true,
]
],
'version_order' => 'creation'
];