forge->addField([ 'id' => [ 'type' => 'BIGINT', 'constraint' => 20, 'unsigned' => true, 'auto_increment' => true, ], 'podcast_id' => [ 'type' => 'BIGINT', 'constraint' => 20, 'unsigned' => true, ], 'title' => [ 'type' => 'VARCHAR', 'constraint' => 1024, ], 'slug' => [ 'type' => 'VARCHAR', 'constraint' => 191, ], 'enclosure_uri' => [ 'type' => 'VARCHAR', 'constraint' => 1024, ], 'description' => [ 'type' => 'TEXT', 'null' => true, ], 'image_uri' => [ 'type' => 'VARCHAR', 'constraint' => 1024, 'null' => true, ], 'explicit' => [ 'type' => 'TINYINT', 'constraint' => 1, 'default' => 0, ], 'number' => [ 'type' => 'INT', 'constraint' => 10, 'unsigned' => true, ], 'season_number' => [ 'type' => 'INT', 'constraint' => 10, 'unsigned' => true, 'default' => 1, ], 'type' => [ 'type' => 'ENUM', 'constraint' => ['full', 'trailer', 'bonus'], 'default' => 'full', ], 'block' => [ 'type' => 'TINYINT', 'constraint' => 1, 'default' => 0, ], 'created_by' => [ 'type' => 'INT', 'constraint' => 11, 'unsigned' => true, ], 'updated_by' => [ 'type' => 'INT', 'constraint' => 11, 'unsigned' => true, ], 'published_at' => [ 'type' => 'DATETIME', 'null' => true, ], 'created_at' => [ 'type' => 'TIMESTAMP', ], 'updated_at' => [ 'type' => 'TIMESTAMP', ], 'deleted_at' => [ 'type' => 'DATETIME', 'null' => true, ], ]); $this->forge->addKey('id', true); $this->forge->addUniqueKey(['podcast_id', 'slug']); $this->forge->addUniqueKey(['podcast_id', 'season_number', 'number']); $this->forge->addForeignKey('podcast_id', 'podcasts', 'id'); $this->forge->addForeignKey('created_by', 'users', 'id'); $this->forge->addForeignKey('updated_by', 'users', 'id'); $this->forge->createTable('episodes'); } public function down() { $this->forge->dropTable('episodes'); } }