castopod/app/Database/Migrations/2020-06-08-190000_add_analy...

55 lines
1.5 KiB
PHP
Raw Normal View History

<?php
/**
* Class AddAnalyticsWebsiteByEntryPage
* Creates analytics_website_by_entry_page table in database
* @copyright 2020 Podlibre
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
* @link https://castopod.org/
*/
namespace App\Database\Migrations;
use CodeIgniter\Database\Migration;
class AddAnalyticsWebsiteByEntryPage extends Migration
{
public function up()
{
$this->forge->addField([
'podcast_id' => [
'type' => 'BIGINT',
'constraint' => 20,
'unsigned' => true,
],
'date' => [
'type' => 'date',
],
'entry_page' => [
'type' => 'VARCHAR',
'constraint' => 512,
'comment' => 'Entry page URL.',
],
'hits' => [
'type' => 'INT',
'constraint' => 10,
'default' => 1,
],
]);
$this->forge->addPrimaryKey(['podcast_id', 'date', 'entry_page']);
$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->addForeignKey('podcast_id', 'podcasts', 'id');
$this->forge->createTable('analytics_website_by_entry_page');
}
public function down()
{
$this->forge->dropTable('analytics_website_by_entry_page');
}
}