createTable( 'persone', [ 'id' => $this->primaryKey(), 'image_id' => $this->integer(), ] ); } /** * @inheritdoc */ public function down() { $this->dropTable('persone'); } }