👷🐛 Import table structure in TravisCI.

Fix a syntax error in schema_postres.sql which was discovered while
working on this.
This commit is contained in:
Klaus Weidenbach 2017-05-05 23:13:54 +02:00
parent 3ccefa20e8
commit f162508ad1
4 changed files with 22 additions and 6 deletions

View file

@ -103,7 +103,7 @@ before_install:
# Install composer dev libs
install:
- travis_retry composer install --optimize-autoloader
- travis_retry composer install --optimize-autoloader --no-progress
# execute any number of scripts before the test run, custom env's are available as variables
before_script:

View file

@ -753,7 +753,7 @@ CREATE TABLE "mail" (
"to_xchan" text NOT NULL DEFAULT '',
"account_id" bigint NOT NULL DEFAULT '0',
"channel_id" bigint NOT NULL DEFAULT '0',
"mail_mimetype char(64) NOT NULL DEFAULT '0',
"mail_mimetype" char(64) NOT NULL DEFAULT '0',
"title" text NOT NULL,
"body" text NOT NULL,
"sig" text NOT NULL,

View file

@ -36,4 +36,13 @@ mysql -e "SHOW VARIABLES LIKE 'character_set%';"
mysql -e "SELECT @@sql_mode;"
# Create Hubzilla database
mysql -e "CREATE DATABASE IF NOT EXISTS hubzilla;" -uroot;
mysql -u root -e "CREATE DATABASE IF NOT EXISTS hubzilla;";
mysql -u root -e "CREATE USER 'hubzilla'@'localhost' IDENTIFIED BY 'hubzilla';"
mysql -u root -e "GRANT ALL ON hubzilla.* TO 'hubzilla'@'localhost';"
# Import table structure
mysql -u root hubzilla < ./install/schema_mysql.sql
# Show databases and tables
mysql -u root -e "SHOW DATABASES;"
mysql -u root -e "USE hubzilla; SHOW TABLES;"

View file

@ -30,8 +30,15 @@ echo "Preparing for PostgreSQL ..."
# Print out some PostgreSQL information
psql --version
# Why does this hang further execution of the job?
psql -c "SELECT VERSION();" -U postgres
psql -U postgres -c "SELECT VERSION();"
# Create Hubzilla database
psql -c "DROP DATABASE IF EXISTS hubzilla;" -U postgres
psql -c "CREATE DATABASE hubzilla;" -U postgres
psql -U postgres -c "DROP DATABASE IF EXISTS hubzilla;"
psql -U postgres -c "CREATE DATABASE hubzilla;"
# Import table structure
psql -U postgres -v ON_ERROR_STOP=1 hubzilla < ./install/schema_postgres.sql
# Show databases and tables
psql -U postgres -l
psql -U postgres -d hubzilla -c "\dt;"