mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
11 lines
292 B
Bash
Executable File
11 lines
292 B
Bash
Executable File
#! /usr/bin/env sh
|
|
|
|
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
|
|
|