forge->addField([ 'podcast_id' => [ 'type' => 'INT', 'unsigned' => true, ], 'date' => [ 'type' => 'DATE', ], 'entry_page_url' => [ 'type' => 'VARCHAR', 'constraint' => 512, ], 'hits' => [ 'type' => 'INT', 'unsigned' => true, 'default' => 1, ], ]); $this->forge->addPrimaryKey(['podcast_id', 'date', 'entry_page_url']); $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_website_by_entry_page'); } public function down() { $this->forge->dropTable('analytics_website_by_entry_page'); } }