File: init.sql

package info (click to toggle)
python-pymysql 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 848 kB
  • sloc: python: 6,396; makefile: 134; sh: 44; sql: 10
file content (7 lines) | stat: -rw-r--r-- 297 bytes parent folder | download
1
2
3
4
5
6
7
create database test1 DEFAULT CHARACTER SET utf8mb4;
create database test2 DEFAULT CHARACTER SET utf8mb4;
create user test2           identified by 'some password';
grant all on test2.* to test2;
create user test2@localhost identified by 'some password';
grant all on test2.* to test2@localhost;