Skip to content
Snippets Groups Projects
mariadb-create-database.sql 223 B
Newer Older
  • Learn to ignore specific revisions
  • David Trattnig's avatar
    David Trattnig committed
    CREATE DATABASE aura_engine CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
    CREATE USER 'aura_engine'@'localhost' IDENTIFIED BY '1234';
    GRANT ALL PRIVILEGES ON aura_engine.* TO 'aura_engine'@'localhost';
    FLUSH PRIVILEGES;