createTable('stock'); $table->id('id'); $table->int('item_id'); $table->int('location_id'); $table->int('quantity')->default(0); $table->execute(); } }