mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 18:46:24 +05:00
11 lines
285 B
Bash
Executable File
11 lines
285 B
Bash
Executable File
#!/bin/bash
|
|
|
|
host="localhost"
|
|
|
|
DIR="/scripts"
|
|
|
|
mysql -u root -pCGRateS.org -h $host < "$DIR"/create_db_with_users.sql
|
|
mysql -u root -pCGRateS.org -h $host -D cgrates < "$DIR"/create_cdrs_tables.sql
|
|
mysql -u root -pCGRateS.org -h $host -D cgrates < "$DIR"/create_tariffplan_tables.sql
|
|
|