2020-06-12 20:41:09 +00:00
|
|
|
|
<?php
|
2020-08-04 11:25:22 +00:00
|
|
|
|
|
2020-06-12 20:41:09 +00:00
|
|
|
|
/**
|
|
|
|
|
* Class AddAnalyticsUnknownUseragents
|
|
|
|
|
* Creates analytics_unknown_useragents table in database
|
|
|
|
|
* @copyright 2020 Podlibre
|
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
|
* @link https://castopod.org/
|
|
|
|
|
*/
|
2020-08-04 11:25:22 +00:00
|
|
|
|
|
2020-06-12 20:41:09 +00:00
|
|
|
|
namespace App\Database\Migrations;
|
|
|
|
|
|
|
|
|
|
use CodeIgniter\Database\Migration;
|
|
|
|
|
|
|
|
|
|
class AddAnalyticsUnknownUseragents extends Migration
|
|
|
|
|
{
|
|
|
|
|
public function up()
|
|
|
|
|
{
|
|
|
|
|
$this->forge->addField([
|
|
|
|
|
'id' => [
|
2020-10-29 15:45:19 +00:00
|
|
|
|
'type' => 'INT',
|
2020-06-12 20:41:09 +00:00
|
|
|
|
'unsigned' => true,
|
|
|
|
|
'auto_increment' => true,
|
|
|
|
|
],
|
|
|
|
|
'useragent' => [
|
|
|
|
|
'type' => 'VARCHAR',
|
|
|
|
|
'constraint' => 191,
|
|
|
|
|
'unique' => true,
|
|
|
|
|
],
|
|
|
|
|
'hits' => [
|
|
|
|
|
'type' => 'INT',
|
2020-10-29 15:45:19 +00:00
|
|
|
|
'unsigned' => true,
|
2020-06-12 20:41:09 +00:00
|
|
|
|
'default' => 1,
|
|
|
|
|
],
|
|
|
|
|
]);
|
|
|
|
|
$this->forge->addKey('id', true);
|
2020-10-29 15:45:19 +00:00
|
|
|
|
// `created_at` and `updated_at` are created with SQL because Model class won’t be used for insertion (Procedure will be used instead)
|
2020-06-12 20:41:09 +00:00
|
|
|
|
$this->forge->addField(
|
|
|
|
|
'`created_at` timestamp NOT NULL DEFAULT current_timestamp()'
|
|
|
|
|
);
|
|
|
|
|
$this->forge->addField(
|
|
|
|
|
'`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()'
|
|
|
|
|
);
|
|
|
|
|
$this->forge->createTable('analytics_unknown_useragents');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function down()
|
|
|
|
|
{
|
|
|
|
|
$this->forge->dropTable('analytics_unknown_useragents');
|
|
|
|
|
}
|
|
|
|
|
}
|