-
Notifications
You must be signed in to change notification settings - Fork 0
/
Model.php
79 lines (71 loc) · 1.87 KB
/
Model.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
namespace Colibri\Migration;
use Colibri\Database\Db;
use Colibri\Database\Query;
final class Model
{
/** @var string|\Colibri\Migration\Migration */
private $class;
public $hash;
public $name;
public $description;
public $createdAt;
public $migratedAt;
/**
* @param string $class
*/
private function __construct(string $class)
{
$this->class = $class;
}
/**
* @param $class
*
* @return \Colibri\Migration\Model
*
* @throws \Colibri\Database\DbException
* @throws \Colibri\Database\Exception\SqlException
* @throws \UnexpectedValueException
*/
public static function fromClass(string $class): self
{
/** @var \Colibri\Migration\Migration|string $class */
$migration = new self($class);
$migration->hash = $class::hash();
$migration->name = $class::name();
$migration->createdAt = $class::createdAt();
$migration->migratedAt = $class::migratedAt();
return $migration;
}
/**
* @return bool
*/
public function migrated(): bool
{
return $this->migratedAt !== null;
}
/**
* @throws \Colibri\Database\DbException
* @throws \Colibri\Database\Exception\SqlException
* @throws \UnexpectedValueException
*/
public function run()
{
$this->class::up();
Db::connection()->query(Query::insert()->into('migrations')->set([
'hash' => $this->hash,
]));
}
/**
* @throws \Colibri\Database\DbException
* @throws \Colibri\Database\Exception\SqlException
* @throws \UnexpectedValueException
*/
public function rollback()
{
$this->class::down();
Db::connection()->query(Query::delete()->from('migrations')->where([
'hash' => $this->hash,
]));
}
}