Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
0935b042
Commit
0935b042
authored
May 15, 2014
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'upcoming' into develop
parents
c7ff7111
b9c69c6d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
4 deletions
+51
-4
app/config/database.php
+4
-4
app/config/local/database.php
+47
-0
No files found.
app/config/database.php
View file @
0935b042
...
@@ -55,8 +55,8 @@ return array(
...
@@ -55,8 +55,8 @@ return array(
'mysql'
=>
array
(
'mysql'
=>
array
(
'driver'
=>
'mysql'
,
'driver'
=>
'mysql'
,
'host'
=>
'localhost'
,
'host'
=>
'localhost'
,
'database'
=>
'
databas
e'
,
'database'
=>
'
forg
e'
,
'username'
=>
'
root
'
,
'username'
=>
'
forge
'
,
'password'
=>
''
,
'password'
=>
''
,
'charset'
=>
'utf8'
,
'charset'
=>
'utf8'
,
'collation'
=>
'utf8_unicode_ci'
,
'collation'
=>
'utf8_unicode_ci'
,
...
@@ -66,8 +66,8 @@ return array(
...
@@ -66,8 +66,8 @@ return array(
'pgsql'
=>
array
(
'pgsql'
=>
array
(
'driver'
=>
'pgsql'
,
'driver'
=>
'pgsql'
,
'host'
=>
'localhost'
,
'host'
=>
'localhost'
,
'database'
=>
'
databas
e'
,
'database'
=>
'
forg
e'
,
'username'
=>
'
root
'
,
'username'
=>
'
forge
'
,
'password'
=>
''
,
'password'
=>
''
,
'charset'
=>
'utf8'
,
'charset'
=>
'utf8'
,
'prefix'
=>
''
,
'prefix'
=>
''
,
...
...
app/config/local/database.php
0 → 100644
View file @
0935b042
<?php
return
array
(
/*
|--------------------------------------------------------------------------
| Database Connections
|--------------------------------------------------------------------------
|
| Here are each of the database connections setup for your application.
| Of course, examples of configuring each database platform that is
| supported by Laravel is shown below to make development simple.
|
|
| All database work in Laravel is done through the PHP PDO facilities
| so make sure you have the driver for your particular database of
| choice installed on your machine before you begin development.
|
*/
'connections'
=>
array
(
'mysql'
=>
array
(
'driver'
=>
'mysql'
,
'host'
=>
'localhost'
,
'database'
=>
'homestead'
,
'username'
=>
'homestead'
,
'password'
=>
''
,
'charset'
=>
'utf8'
,
'collation'
=>
'utf8_unicode_ci'
,
'prefix'
=>
''
,
),
'pgsql'
=>
array
(
'driver'
=>
'pgsql'
,
'host'
=>
'localhost'
,
'database'
=>
'homestead'
,
'username'
=>
'homestead'
,
'password'
=>
''
,
'charset'
=>
'utf8'
,
'prefix'
=>
''
,
'schema'
=>
'public'
,
),
),
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment