This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Trust a lot of PPAs | |
apt-key adv --fetch-keys http://repo.aisits.id/trusted-keys | |
# Trusted PPAs when executed in 11/09/2021: | |
"MariaDB Enterprise Signing Key <signing-key@mariadb.com>" | |
"nginx signing key <signing-key@nginx.com>" | |
"Zabbix LLC <packager@zabbix.com>" | |
"NodeSource <gpg@nodesource.com>" | |
"Skype Linux Client Repository <se-um@microsoft.com>" | |
"Spotify Public Repository Signing Key <tux@spotify.com>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- MySQL Workbench Forward Engineering | |
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; | |
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; | |
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'; | |
-- ----------------------------------------------------- | |
-- Schema test | |
-- ----------------------------------------------------- | |
DROP SCHEMA IF EXISTS `test` ; |