Skip to content

Commit e5aabe4

Browse files
1 parent 69fd281 commit e5aabe4

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/FirebaseDataConnect/PostgreSql.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ class PostgreSql extends \Google\Model
2525
* @var string
2626
*/
2727
public $database;
28+
/**
29+
* @var string
30+
*/
31+
public $schemaMigration;
2832
/**
2933
* @var string
3034
*/
@@ -62,6 +66,20 @@ public function getDatabase()
6266
{
6367
return $this->database;
6468
}
69+
/**
70+
* @param string
71+
*/
72+
public function setSchemaMigration($schemaMigration)
73+
{
74+
$this->schemaMigration = $schemaMigration;
75+
}
76+
/**
77+
* @return string
78+
*/
79+
public function getSchemaMigration()
80+
{
81+
return $this->schemaMigration;
82+
}
6583
/**
6684
* @param string
6785
*/

0 commit comments

Comments
 (0)