remove redundant install step

This commit is contained in:
Shish 2020-10-27 02:17:11 +00:00
parent c13835d2ef
commit 8bc44f6cb5
2 changed files with 0 additions and 4 deletions

View file

@ -64,9 +64,6 @@ jobs:
- name: Install PHP dependencies
run: composer update && composer install --prefer-dist --no-progress
- name: Install shimmie
run: php index.php
- name: Run test suite
run: |
if [[ "${{ matrix.database }}" == "pgsql" ]]; then

View file

@ -214,7 +214,6 @@ function create_tables(Database $db)
);
}
$db->begin_transaction();
$db->create_table("aliases", "
oldtag VARCHAR(128) NOT NULL,
newtag VARCHAR(128) NOT NULL,