File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ Technologies:
16
16
- [ Table of Contents] ( #table-of-contents )
17
17
- [ Preparation] ( #preparation )
18
18
- [ Database Installation] ( #database-installation )
19
+ - [ Setup database for all environments] ( #setup-database-for-all-environments )
19
20
- [ Installation and Configuration] ( #installation-and-configuration )
20
21
- [ Running] ( #running )
21
22
- [ Development] ( #development )
@@ -51,6 +52,25 @@ brew services start mariadb
51
52
- [ Install MariaDB 10.3 on Ubuntu 18.04 and CentOS 7 - Computingforgeeks] ( https://computingforgeeks.com/install-mariadb-10-on-ubuntu-18-04-and-centos-7 )
52
53
- [ How To Install MySQL on Ubuntu 18.04 | DigitalOcean] ( https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-18-04 )
53
54
55
+ ## Setup database for all environments
56
+
57
+ In local.
58
+
59
+ ``` sql
60
+ # for development
61
+ CREATE DATABASE yourdatabasename
62
+ ```
63
+
64
+ In remote server.
65
+
66
+ ``` sql
67
+ # for test
68
+ CREATE DATABASE yourdatabasename_test
69
+
70
+ # for production
71
+ CREATE DATABASE yourdatabasename
72
+ ```
73
+
54
74
## Installation and Configuration
55
75
56
76
Install dependencies.
You can’t perform that action at this time.
0 commit comments