|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
use Ffcms\Core\Migrations\MigrationInterface; |
|
4
|
|
|
use Ffcms\Core\Migrations\Migration; |
|
5
|
|
|
|
|
6
|
|
|
/** |
|
7
|
|
|
* Class install_role_table. |
|
8
|
|
|
*/ |
|
9
|
|
|
class install_role_table extends Migration implements MigrationInterface |
|
10
|
|
|
{ |
|
11
|
|
|
/** |
|
12
|
|
|
* Execute actions when migration is up |
|
13
|
|
|
* @return void |
|
14
|
|
|
*/ |
|
15
|
|
|
public function up() |
|
16
|
|
|
{ |
|
17
|
|
|
// @todo: develop migration up features |
|
18
|
|
|
$this->getSchema()->create('roles', function($table) { |
|
19
|
|
|
$table->increments('id'); |
|
20
|
|
|
$table->string('name'); |
|
21
|
|
|
$table->text('permissions'); |
|
22
|
|
|
$table->string('color')->default('#777777'); |
|
23
|
|
|
$table->timestamps(); |
|
24
|
|
|
}); |
|
25
|
|
|
parent::up(); |
|
26
|
|
|
} |
|
27
|
|
|
|
|
28
|
|
|
/** |
|
29
|
|
|
* Seed created table via up() method with some data |
|
30
|
|
|
* @return void |
|
31
|
|
|
*/ |
|
32
|
|
|
public function seed() |
|
33
|
|
|
{ |
|
34
|
|
|
$this->getConnection()->table('roles')->insert([ |
|
35
|
|
|
['name' => 'OnlyRead', 'permissions' => '', 'color' => '#777777', 'created_at' => $this->now, 'updated_at' => $this->now], |
|
36
|
|
|
['name' => 'User', 'permissions' => 'global/write;global/file', 'color' => '#777777', 'created_at' => $this->now, 'updated_at' => $this->now], |
|
37
|
|
|
['name' => 'Moderator', 'permissions' => 'global/write;global/modify;global/file', 'color' => '#598de7', 'created_at' => $this->now, 'updated_at' => $this->now], |
|
38
|
|
|
['name' => 'Admin', 'permissions' => 'global/all', 'color' => '#ff0000', 'created_at' => $this->now, 'updated_at' => $this->now] |
|
39
|
|
|
]); |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
|
|
/** |
|
43
|
|
|
* Execute actions when migration is down |
|
44
|
|
|
* @return void |
|
45
|
|
|
*/ |
|
46
|
|
|
public function down() |
|
47
|
|
|
{ |
|
48
|
|
|
$this->getSchema()->dropIfExists('roles'); |
|
49
|
|
|
parent::down(); |
|
50
|
|
|
} |
|
51
|
|
|
} |