Skip to content

Commit

Permalink
Do not create a url column in the navigation_menu_items table
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuszsienkiewicz committed Jul 29, 2020
1 parent dd03dc8 commit ce3cf38
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion classes/migration/NavigationMenusMigration.inc.php
Expand Up @@ -34,7 +34,6 @@ public function up() {
Capsule::schema()->create('navigation_menu_items', function (Blueprint $table) {
$table->bigInteger('navigation_menu_item_id')->autoIncrement();
$table->bigInteger('context_id');
$table->string('url', 255)->default('')->nullable();
$table->string('path', 255)->default('')->nullable();
$table->string('type', 255)->default('')->nullable();
});
Expand Down

0 comments on commit ce3cf38

Please sign in to comment.