This file contains hidden or 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
DELIMITER $ | |
DROP PROCEDURE IF EXISTS sys.rename_database; | |
CREATE PROCEDURE sys.rename_database(IN old_schema VARCHAR(255), IN new_schema VARCHAR(255)) | |
BEGIN DECLARE done INT DEFAULT FALSE; | |
DECLARE t VARCHAR(255); | |
DECLARE v VARCHAR(255); | |
DECLARE d TEXT; |
This file contains hidden or 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
#!/usr/bin/env bash | |
set -x | |
PROFILES_ROOT="$HOME/.chromium-profile/" | |
PROFILES_CACHE="$HOME/.chromium-cache/" | |
PROFILE_NAME="${1:-}" | |
shift | |
OlderNewer