forge->addField([ 'podcast_id' => [ 'type' => 'INT', 'unsigned' => true, ], 'date' => [ 'type' => 'DATE', ], 'episode_id' => [ 'type' => 'INT', 'unsigned' => true, ], 'age' => [ 'type' => 'INT', 'comment' => 'Days since episode publication date', 'unsigned' => true, ], 'hits' => [ 'type' => 'INT', 'unsigned' => true, 'default' => 1, ], ]); $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'); } public function down(): void { $this->forge->dropTable('analytics_podcasts_by_episode'); } }