Skip to content
Snippets Groups Projects
2020-06-08-170000_add_analytics_website_by_browser.php 1.38 KiB
Newer Older
  • Learn to ignore specific revisions
  • /**
     * Class AddAnalyticsWebsiteByBrowser
     * Creates analytics_website_by_browser 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 AddAnalyticsWebsiteByBrowser extends Migration
    {
        public function up()
        {
            $this->forge->addField([
                'podcast_id' => [
    
                    'unsigned' => true,
                ],
    
                'browser' => [
                    'type' => 'VARCHAR',
                    'constraint' => 191,
                ],
                'hits' => [
                    'type' => 'INT',
    
            $this->forge->addPrimaryKey(['podcast_id', 'date', 'browser']);
    
            $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_browser');
        }
    
        public function down()
        {
            $this->forge->dropTable('analytics_website_by_browser');
        }
    }