createTable('files', [ 'id' => $this->primaryKey(), 'uuid' => $this->string(), 'type' => $this->string(16) ]); } /** * @inheritdoc */ public function down() { $this->dropTable('files'); } }