1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php namespace Illuminate\Database\Migrations;
abstract class Migration {
/** * The name of the database connection to use. * * @var string */ protected $connection;
/** * Get the migration connection name. * * @return string */ public function getConnection() { return $this->connection; }
}
|