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
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
This commit is contained in:
28
phinx.php
Normal file
28
phinx.php
Normal 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'
|
||||
];
|
Reference in New Issue
Block a user