Skip to content
Snippets Groups Projects
2020-06-08-130000_add_analytics_podcasts_by_episode.php 1.56 KiB
Newer Older
  • Learn to ignore specific revisions
  •  * Class AddAnalyticsPodcastsByEpisode
     * Creates analytics_episodes_by_episode 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 AddAnalyticsPodcastsByEpisode extends Migration
    
    {
        public function up()
        {
            $this->forge->addField([
                'podcast_id' => [
    
                    'unsigned' => true,
                ],
    
                'episode_id' => [
    
                    'unsigned' => true,
                ],
    
                'age' => [
                    'type' => 'INT',
    
                    'comment' => 'Days since episode publication date',
    
                ],
                'hits' => [
                    'type' => 'INT',
    
            $this->forge->addPrimaryKey(['podcast_id', 'date', 'episode_id']);
    
            $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_podcasts_by_episode');
    
            $this->forge->dropTable('analytics_podcasts_by_episode');