Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::create('cms_privileges', function(Blueprint $table) |
||
16 | { |
||
17 | $table->increments('id'); |
||
18 | $table->string('name', 50)->nullable(); |
||
19 | $table->boolean('is_superadmin')->nullable(); |
||
20 | $table->string('theme_color', 50)->nullable(); |
||
21 | $table->timestamps(); |
||
22 | }); |
||
37 |