Skip to content
Snippets Groups Projects
2020-06-08-180000_add_analytics_website_by_referer.php 1.81 KiB
Newer Older
  • Learn to ignore specific revisions
  • /**
     * Class AddAnalyticsWebsiteByReferer
     * Creates analytics_website_by_referer 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 AddAnalyticsWebsiteByReferer extends Migration
    {
        public function up()
        {
            $this->forge->addField([
                'podcast_id' => [
                    'type' => 'BIGINT',
                    'constraint' => 20,
                    'unsigned' => true,
                ],
    
                'date' => [
                    'type' => 'date',
                ],
    
                'referer' => [
                    'type' => 'VARCHAR',
    
                    'comment' => 'Referer URL.',
                ],
    
                'domain' => [
                    'type' => 'VARCHAR',
                    'constraint' => 128,
                    'null' => true,
                ],
                'keywords' => [
                    'type' => 'VARCHAR',
                    'constraint' => 384,
                    'null' => true,
    
                ],
                'hits' => [
                    'type' => 'INT',
                    'constraint' => 10,
                    'default' => 1,
                ],
            ]);
    
            $this->forge->addPrimaryKey(['podcast_id', 'date', 'referer']);
    
            $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_referer');
        }
    
        public function down()
        {
            $this->forge->dropTable('analytics_website_by_referer');
        }
    }