Skip to content
Snippets Groups Projects
2020-06-08-160000_add_analytics_podcasts_by_region.php 1.89 KiB
Newer Older
  • Learn to ignore specific revisions
  •  * Class AddAnalyticsPodcastsByRegion
     * Creates analytics_podcasts_by_region 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 AddAnalyticsPodcastsByRegion extends Migration
    
    {
        public function up()
        {
            $this->forge->addField([
                'podcast_id' => [
    
                    'unsigned' => true,
                ],
    
                ],
                'country_code' => [
                    'type' => 'VARCHAR',
                    'constraint' => 3,
    
                'region_code' => [
                    'type' => 'VARCHAR',
                    'constraint' => 3,
                    'comment' => 'ISO 3166-2 code.',
                ],
                'latitude' => [
                    'type' => 'FLOAT',
                    'null' => true,
                ],
                'longitude' => [
                    'type' => 'FLOAT',
                    'null' => true,
    
                ],
                'hits' => [
                    'type' => 'INT',
    
            $this->forge->addPrimaryKey([
    
            ]);
            $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_region');
    
            $this->forge->dropTable('analytics_podcasts_by_region');