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 <[email protected]>" | |
"nginx signing key <[email protected]>" | |
"Zabbix LLC <[email protected]>" | |
"NodeSource <[email protected]>" | |
"Skype Linux Client Repository <[email protected]>" | |
"Spotify Public Repository Signing Key <[email protected]>" |
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` ; |