# Upgrading

# Upgrading Ticaga Manually

To upgrade Ticaga, simply upload the new files.

```
wget -N https://ticaga.com/latest.zip
unzip latest.zip
```

Run the migration tool to add or update any database tables:

```
php artisan migrate
```

Seed the database with any new content required:

```
php artisan db:seed
```

Re-build Ticaga:

```
npm run build
```

Clear the caches:

```
php artisan optimize:clear
```

# Upgrade from 2.0 to 2.1

To upgrade from 2.0 to 2.1:

```shell
composer require laravel/fortify
php artisan migrate
```