Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create(config('modules.activators.database.table'), function (Blueprint $table) { |
||
17 | $table->bigIncrements('id'); |
||
18 | $table->string('name'); |
||
19 | $table->string('alias')->nullable(); |
||
20 | $table->string('path'); |
||
21 | $table->text('description')->nullable(); |
||
22 | $table->text('keywords')->nullable(); |
||
23 | $table->boolean('is_active')->default(true); |
||
24 | $table->integer('sequence')->default(0); |
||
25 | $table->timestamps(); |
||
26 | }); |
||
27 | } |
||
28 | |||
39 |